From 1b040b05e433d846ffa8765b09661590e66c293a Mon Sep 17 00:00:00 2001 From: Ignacio Rodríguez Date: Thu, 18 Oct 2012 12:21:45 +0000 Subject: Port finish! --- diff --git a/NEWS b/NEWS index e654b67..cbce885 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,9 @@ NEWS +15 + +ENHACEMENT: +*Ignacio Rodríguez port to gtk3 + 14 @@ -87,4 +92,4 @@ BUG FIXES 1 -* New project: tile generation; basic play \ No newline at end of file +* New project: tile generation; basic play diff --git a/PathsActivity.py b/PathsActivity.py index faea56f..bc0b6f1 100644 --- a/PathsActivity.py +++ b/PathsActivity.py @@ -1,4 +1,6 @@ #Copyright (c) 2011 Walter Bender +# Port To GTK3: +# Ignacio Rodriguez # 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 @@ -9,29 +11,27 @@ # along with this library; if not, write to the Free Software # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA +from gi.repository import Gtk, Gdk, GdkPixbuf, GObject -import gtk -import gobject - -import sugar -from sugar.activity import activity -from sugar import profile +import sugar3 +from sugar3.activity import activity +from sugar3 import profile try: - from sugar.graphics.toolbarbox import ToolbarBox + from sugar3.graphics.toolbarbox import ToolbarBox _have_toolbox = True except ImportError: _have_toolbox = False if _have_toolbox: - from sugar.bundle.activitybundle import ActivityBundle - from sugar.activity.widgets import ActivityToolbarButton - from sugar.activity.widgets import StopButton - from sugar.graphics.toolbarbox import ToolbarButton + from sugar3.bundle.activitybundle import ActivityBundle + from sugar3.activity.widgets import ActivityToolbarButton + from sugar3.activity.widgets import StopButton + from sugar3.graphics.toolbarbox import ToolbarButton -from sugar.graphics.toolbutton import ToolButton -from sugar.graphics.menuitem import MenuItem -from sugar.graphics.icon import Icon -from sugar.datastore import datastore +from sugar3.graphics.toolbutton import ToolButton +from sugar3.graphics.menuitem import MenuItem +from sugar3.graphics.icon import Icon +from sugar3.datastore import datastore from toolbar_utils import button_factory, image_factory, label_factory, \ separator_factory @@ -39,8 +39,8 @@ from toolbar_utils import button_factory, image_factory, label_factory, \ import telepathy from dbus.service import signal from dbus.gobject_service import ExportedGObject -from sugar.presence import presenceservice -from sugar.presence.tubeconn import TubeConnection +from sugar3.presence import presenceservice +from sugar3.presence.tubeconn import TubeConnection from gettext import gettext as _ import locale @@ -75,9 +75,9 @@ class PathsActivity(activity.Activity): self._setup_dispatch_table() # Create a canvas - canvas = gtk.DrawingArea() - canvas.set_size_request(gtk.gdk.screen_width(), \ - gtk.gdk.screen_height()) + canvas = Gtk.DrawingArea() + canvas.set_size_request(Gdk.Screen.width(), \ + Gdk.Screen.height()) self.set_canvas(canvas) canvas.show() self.show_all() @@ -111,7 +111,7 @@ class PathsActivity(activity.Activity): else: # Use pre-0.86 toolbar design - games_toolbar = gtk.Toolbar() + games_toolbar = Gtk.Toolbar() toolbox = activity.ActivityToolbox(self) self.set_toolbox(toolbox) toolbox.add_toolbar(_('Game'), games_toolbar) @@ -168,7 +168,7 @@ class PathsActivity(activity.Activity): def set_robot_status(self, status, icon): ''' Reset robot icon and status ''' self._game.playing_with_robot = status - self.robot_button.set_icon(icon) + self.robot_button.set_icon_name(icon) def _dialog_cb(self, button=None): ''' Send end of turn ''' @@ -301,11 +301,11 @@ class PathsActivity(activity.Activity): reply_handler=self._list_tubes_reply_cb, error_handler=self._list_tubes_error_cb) - self._new_game_button.set_icon('no-new-game') + self._new_game_button.set_icon_name('no-new-game') self._new_game_button.set_tooltip( _('Only the sharer can start a new game.')) - self.robot_button.set_icon('no-robot') + self.robot_button.set_icon_name('no-robot') self.robot_button.set_tooltip(_('The robot is disabled when sharing.')) # display your XO on the toolbar diff --git a/activity/activity.info b/activity/activity.info index cb62684..b7e9608 100644 --- a/activity/activity.info +++ b/activity/activity.info @@ -1,6 +1,6 @@ [Activity] name = Paths -activity_version = 14 +activity_version = 15 license = GPLv3 bundle_id = org.sugarlabs.PathsActivity exec = sugar-activity PathsActivity.PathsActivity diff --git a/deck.py b/deck.py index 77822dd..04adfc6 100644 --- a/deck.py +++ b/deck.py @@ -1,4 +1,6 @@ #Copyright (c) 2011 Walter Bender +# Port To GTK3: +# Ignacio Rodriguez # 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 @@ -9,8 +11,7 @@ # along with this library; if not, write to the Free Software # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA - -import gtk +from gi.repository import Gtk, Gdk from random import randrange from tile import Tile, board_card diff --git a/game.py b/game.py index f374a87..b9a0f1d 100644 --- a/game.py +++ b/game.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- #Copyright (c) 2011 Walter Bender +# Port To GTK3: +# Ignacio Rodriguez # 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 @@ -10,9 +12,7 @@ # along with this library; if not, write to the Free Software # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA - -import gtk -import gobject +from gi.repository import Gtk, Gdk, GdkPixbuf, GObject from gettext import gettext as _ @@ -20,7 +20,7 @@ import logging _logger = logging.getLogger('paths-activity') try: - from sugar.graphics import style + from sugar3.graphics import style GRID_CELL_SIZE = style.GRID_CELL_SIZE except ImportError: GRID_CELL_SIZE = 0 @@ -54,18 +54,17 @@ class Game(): self._canvas = canvas parent.show_all() - self._canvas.set_flags(gtk.CAN_FOCUS) - self._canvas.add_events(gtk.gdk.BUTTON_PRESS_MASK) - self._canvas.add_events(gtk.gdk.BUTTON_RELEASE_MASK) - self._canvas.add_events(gtk.gdk.POINTER_MOTION_MASK) - self._canvas.connect("expose-event", self._expose_cb) + self._canvas.add_events(Gdk.EventMask.BUTTON_PRESS_MASK) + self._canvas.add_events(Gdk.EventMask.BUTTON_RELEASE_MASK) + self._canvas.add_events(Gdk.EventMask.POINTER_MOTION_MASK) + self._canvas.connect("draw", self.__draw_cb) self._canvas.connect("button-press-event", self._button_press_cb) self._canvas.connect("button-release-event", self._button_release_cb) self._canvas.connect("motion-notify-event", self._mouse_move_cb) self._canvas.connect("key_press_event", self._keypress_cb) - self._width = gtk.gdk.screen_width() - self._height = gtk.gdk.screen_height() - (GRID_CELL_SIZE * 1.5) + self._width = Gdk.Screen.width() + self._height = Gdk.Screen.height() - (GRID_CELL_SIZE * 1.5) self._scale = self._height / (8.0 * TILE_HEIGHT) self.tile_width = TILE_WIDTH * self._scale self.tile_height = TILE_HEIGHT * self._scale @@ -199,7 +198,7 @@ class Game(): self._redeal() if self._running_sugar: self._activity.set_player_on_toolbar(self._activity.nick) - self._activity.dialog_button.set_icon('go-next') + self._activity.dialog_button.set_icon_name('go-next') self._activity.dialog_button.set_tooltip( _('Click after taking your turn.')) self._set_label(_('It is your turn.')) @@ -212,7 +211,7 @@ class Game(): self.hands[ROBOT_HAND].deal(self.deck) if self.hands[self._my_hand].tiles_in_hand() == 0: if self._running_sugar: - self._activity.dialog_button.set_icon( + self._activity.dialog_button.set_icon_name( 'media-playback-stop-insensitive') self._activity.dialog_button.set_tooltip(_('Game over')) self.game_over() @@ -264,7 +263,7 @@ class Game(): if self.playing_with_robot: self.its_their_turn(_('robot')) self._waiting_for_robot = True - gobject.timeout_add(1000, self._robot_turn) + GObject.timeout_add(1000, self._robot_turn) elif not self.we_are_sharing(): if self.deck.empty() and \ self.hands[self._my_hand].tiles_in_hand() == 0: @@ -291,7 +290,7 @@ class Game(): if self._running_sugar: if not self.playing_with_robot: self._activity.set_player_on_toolbar(nick) - self._activity.dialog_button.set_icon('media-playback-stop') + self._activity.dialog_button.set_icon_name('media-playback-stop') self._activity.dialog_button.set_tooltip(_('Wait your turn.')) self._set_label(_('Waiting for') + ' ' + nick) self._waiting_for_my_turn = True # I am still waiting. @@ -769,10 +768,10 @@ class Game(): def _keypress_cb(self, area, event): return True - def _expose_cb(self, win, event): + def __draw_cb(self, canvas, cr): ''' Callback to handle window expose events ''' - self.do_expose_event(event) - return True + self._sprites.redraw_sprites(cr=cr) + def do_expose_event(self, event): ''' Handle the expose-event by drawing ''' @@ -785,4 +784,4 @@ class Game(): self._sprites.redraw_sprites(cr=cr) def _destroy_cb(self, win, event): - gtk.main_quit() + Gtk.main_quit() diff --git a/grid.py b/grid.py index 3e67548..43067ec 100644 --- a/grid.py +++ b/grid.py @@ -1,4 +1,6 @@ #Copyright (c) 2011 Walter Bender +# Port To GTK3: +# Ignacio Rodriguez # 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 @@ -10,7 +12,7 @@ # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA -import gtk +from gi.repository import Gtk, Gdk, GdkPixbuf, GObject from deck import Deck from tile import blank_tile diff --git a/grid.pyc b/grid.pyc new file mode 100644 index 0000000..396526e --- /dev/null +++ b/grid.pyc Binary files differ diff --git a/hand.py b/hand.py index d3f968a..cd149c7 100644 --- a/hand.py +++ b/hand.py @@ -1,4 +1,7 @@ #Copyright (c) 2011 Walter Bender +# Port To GTK3: +# Ignacio Rodriguez + # 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 @@ -10,7 +13,7 @@ # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA -import gtk +from gi.repository import Gtk from utils import json_dump, json_load diff --git a/locale/af/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/af/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/af/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/af/activity.linfo b/locale/af/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/af/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ak/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ak/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..53ce0ce --- /dev/null +++ b/locale/ak/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ak/activity.linfo b/locale/ak/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ak/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/am/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/am/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..465377a --- /dev/null +++ b/locale/am/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/am/activity.linfo b/locale/am/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/am/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ar/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ar/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ar/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ar/activity.linfo b/locale/ar/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ar/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ar_SY/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ar_SY/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ar_SY/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ar_SY/activity.linfo b/locale/ar_SY/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ar_SY/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ay/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ay/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ay/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ay/activity.linfo b/locale/ay/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ay/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/aym/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/aym/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..d7564bc --- /dev/null +++ b/locale/aym/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/aym/activity.linfo b/locale/aym/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/aym/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/bg/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/bg/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/bg/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/bg/activity.linfo b/locale/bg/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/bg/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/bi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/bi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/bi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/bi/activity.linfo b/locale/bi/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/bi/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/bn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/bn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/bn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/bn/activity.linfo b/locale/bn/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/bn/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/bn_IN/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/bn_IN/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/bn_IN/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/bn_IN/activity.linfo b/locale/bn_IN/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/bn_IN/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/bs/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/bs/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/bs/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/bs/activity.linfo b/locale/bs/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/bs/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ca/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ca/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ca/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ca/activity.linfo b/locale/ca/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ca/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/cpp/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/cpp/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/cpp/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/cpp/activity.linfo b/locale/cpp/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/cpp/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/cs/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/cs/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..db44451 --- /dev/null +++ b/locale/cs/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/cs/activity.linfo b/locale/cs/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/cs/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/da/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/da/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..a3c81d4 --- /dev/null +++ b/locale/da/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/da/activity.linfo b/locale/da/activity.linfo new file mode 100644 index 0000000..f445099 --- /dev/null +++ b/locale/da/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Stier diff --git a/locale/de/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/de/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/de/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/de/activity.linfo b/locale/de/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/de/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/dz/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/dz/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/dz/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/dz/activity.linfo b/locale/dz/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/dz/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/el/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/el/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..f67b022 --- /dev/null +++ b/locale/el/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/el/activity.linfo b/locale/el/activity.linfo new file mode 100644 index 0000000..78b660c --- /dev/null +++ b/locale/el/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Μονοπάτια diff --git a/locale/en/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/en/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..5f1ba23 --- /dev/null +++ b/locale/en/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/en/activity.linfo b/locale/en/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/en/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/en_GB/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/en_GB/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..b17fe3e --- /dev/null +++ b/locale/en_GB/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/en_GB/activity.linfo b/locale/en_GB/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/en_GB/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/en_US/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/en_US/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..d5e8e5e --- /dev/null +++ b/locale/en_US/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/en_US/activity.linfo b/locale/en_US/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/en_US/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/es/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/es/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..df9734f --- /dev/null +++ b/locale/es/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/es/activity.linfo b/locale/es/activity.linfo new file mode 100644 index 0000000..b44f5d4 --- /dev/null +++ b/locale/es/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Senderos diff --git a/locale/fa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/fa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/fa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/fa/activity.linfo b/locale/fa/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/fa/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/fa_AF/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/fa_AF/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/fa_AF/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/fa_AF/activity.linfo b/locale/fa_AF/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/fa_AF/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ff/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ff/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ff/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ff/activity.linfo b/locale/ff/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ff/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/fi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/fi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/fi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/fi/activity.linfo b/locale/fi/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/fi/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/fil/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/fil/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/fil/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/fil/activity.linfo b/locale/fil/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/fil/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/fr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/fr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..55f3b1e --- /dev/null +++ b/locale/fr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/fr/activity.linfo b/locale/fr/activity.linfo new file mode 100644 index 0000000..c3bdee5 --- /dev/null +++ b/locale/fr/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Chemins diff --git a/locale/gu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/gu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/gu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/gu/activity.linfo b/locale/gu/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/gu/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ha/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ha/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ha/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ha/activity.linfo b/locale/ha/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ha/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/he/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/he/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/he/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/he/activity.linfo b/locale/he/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/he/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/hi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/hi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/hi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/hi/activity.linfo b/locale/hi/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/hi/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ht/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ht/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ht/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ht/activity.linfo b/locale/ht/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ht/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/hu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/hu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/hu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/hu/activity.linfo b/locale/hu/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/hu/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/hus/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/hus/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..46b0c46 --- /dev/null +++ b/locale/hus/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/hus/activity.linfo b/locale/hus/activity.linfo new file mode 100644 index 0000000..d8bd204 --- /dev/null +++ b/locale/hus/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Aytalchik diff --git a/locale/hy/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/hy/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..5324bc1 --- /dev/null +++ b/locale/hy/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/hy/activity.linfo b/locale/hy/activity.linfo new file mode 100644 index 0000000..956ee94 --- /dev/null +++ b/locale/hy/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Ուղի diff --git a/locale/id/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/id/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/id/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/id/activity.linfo b/locale/id/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/id/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ig/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ig/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ig/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ig/activity.linfo b/locale/ig/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ig/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/is/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/is/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/is/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/is/activity.linfo b/locale/is/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/is/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/it/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/it/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..e20ca0a --- /dev/null +++ b/locale/it/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/it/activity.linfo b/locale/it/activity.linfo new file mode 100644 index 0000000..4ebf7c5 --- /dev/null +++ b/locale/it/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Tracce diff --git a/locale/ja/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ja/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ja/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ja/activity.linfo b/locale/ja/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ja/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/km/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/km/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..2232a24 --- /dev/null +++ b/locale/km/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/km/activity.linfo b/locale/km/activity.linfo new file mode 100644 index 0000000..6fd548e --- /dev/null +++ b/locale/km/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = ផ្លូវ diff --git a/locale/kn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/kn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/kn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/kn/activity.linfo b/locale/kn/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/kn/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ko/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ko/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ko/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ko/activity.linfo b/locale/ko/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ko/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/kos/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/kos/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/kos/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/kos/activity.linfo b/locale/kos/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/kos/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ku/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ku/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..53ce0ce --- /dev/null +++ b/locale/ku/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ku/activity.linfo b/locale/ku/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ku/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/lt/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/lt/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..53ce0ce --- /dev/null +++ b/locale/lt/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/lt/activity.linfo b/locale/lt/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/lt/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/lv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/lv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/lv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/lv/activity.linfo b/locale/lv/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/lv/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/mg/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/mg/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/mg/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/mg/activity.linfo b/locale/mg/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/mg/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/mk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/mk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/mk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/mk/activity.linfo b/locale/mk/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/mk/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ml/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ml/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ml/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ml/activity.linfo b/locale/ml/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ml/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/mn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/mn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/mn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/mn/activity.linfo b/locale/mn/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/mn/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/mr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/mr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/mr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/mr/activity.linfo b/locale/mr/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/mr/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ms/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ms/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ms/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ms/activity.linfo b/locale/ms/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ms/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/mvo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/mvo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/mvo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/mvo/activity.linfo b/locale/mvo/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/mvo/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/na/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/na/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/na/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/na/activity.linfo b/locale/na/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/na/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/nah/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/nah/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..53ce0ce --- /dev/null +++ b/locale/nah/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/nah/activity.linfo b/locale/nah/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/nah/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/nb/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/nb/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/nb/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/nb/activity.linfo b/locale/nb/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/nb/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ne/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ne/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..7da6e1a --- /dev/null +++ b/locale/ne/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ne/activity.linfo b/locale/ne/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ne/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/nl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/nl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/nl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/nl/activity.linfo b/locale/nl/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/nl/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/nn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/nn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/nn/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/nn/activity.linfo b/locale/nn/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/nn/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/pa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/pa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/pa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/pa/activity.linfo b/locale/pa/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/pa/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/pap/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/pap/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/pap/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/pap/activity.linfo b/locale/pap/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/pap/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/pis/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/pis/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/pis/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/pis/activity.linfo b/locale/pis/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/pis/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/pl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/pl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..9ae25ef --- /dev/null +++ b/locale/pl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/pl/activity.linfo b/locale/pl/activity.linfo new file mode 100644 index 0000000..9345034 --- /dev/null +++ b/locale/pl/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Ścieżki diff --git a/locale/ps/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ps/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ps/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ps/activity.linfo b/locale/ps/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ps/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/pt/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/pt/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..ae616cf --- /dev/null +++ b/locale/pt/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/pt/activity.linfo b/locale/pt/activity.linfo new file mode 100644 index 0000000..0c76ecf --- /dev/null +++ b/locale/pt/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Caminhos diff --git a/locale/pt_BR/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/pt_BR/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/pt_BR/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/pt_BR/activity.linfo b/locale/pt_BR/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/pt_BR/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/qu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/qu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/qu/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/qu/activity.linfo b/locale/qu/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/qu/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/quz/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/quz/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..61011fb --- /dev/null +++ b/locale/quz/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/quz/activity.linfo b/locale/quz/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/quz/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ro/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ro/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ro/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ro/activity.linfo b/locale/ro/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ro/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ru/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ru/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ru/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ru/activity.linfo b/locale/ru/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ru/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/rw/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/rw/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..8c48a51 --- /dev/null +++ b/locale/rw/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/rw/activity.linfo b/locale/rw/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/rw/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sd/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sd/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/sd/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sd/activity.linfo b/locale/sd/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sd/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/si/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/si/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/si/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/si/activity.linfo b/locale/si/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/si/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..3a6346d --- /dev/null +++ b/locale/sk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sk/activity.linfo b/locale/sk/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sk/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/sl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sl/activity.linfo b/locale/sl/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sl/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sm/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sm/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/sm/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sm/activity.linfo b/locale/sm/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sm/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/son/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/son/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..249bc31 --- /dev/null +++ b/locale/son/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/son/activity.linfo b/locale/son/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/son/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sq/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sq/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..d0ca77b --- /dev/null +++ b/locale/sq/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sq/activity.linfo b/locale/sq/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sq/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/sr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sr/activity.linfo b/locale/sr/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sr/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/st/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/st/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/st/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/st/activity.linfo b/locale/st/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/st/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/sv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sv/activity.linfo b/locale/sv/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sv/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/sw/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/sw/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/sw/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/sw/activity.linfo b/locale/sw/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/sw/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ta/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ta/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..c6ad8c4 --- /dev/null +++ b/locale/ta/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ta/activity.linfo b/locale/ta/activity.linfo new file mode 100644 index 0000000..b156a78 --- /dev/null +++ b/locale/ta/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = வழிகள் diff --git a/locale/te/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/te/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/te/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/te/activity.linfo b/locale/te/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/te/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/templates/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/templates/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..6ef8e98 --- /dev/null +++ b/locale/templates/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/templates/activity.linfo b/locale/templates/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/templates/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/th/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/th/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..8ef95fd --- /dev/null +++ b/locale/th/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/th/activity.linfo b/locale/th/activity.linfo new file mode 100644 index 0000000..bd7ce51 --- /dev/null +++ b/locale/th/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = เส้นทาง diff --git a/locale/ton/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ton/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ton/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ton/activity.linfo b/locale/ton/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ton/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/tpi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/tpi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/tpi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/tpi/activity.linfo b/locale/tpi/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/tpi/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/tr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/tr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/tr/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/tr/activity.linfo b/locale/tr/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/tr/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/tvl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/tvl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/tvl/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/tvl/activity.linfo b/locale/tvl/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/tvl/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/tyv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/tyv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..53ce0ce --- /dev/null +++ b/locale/tyv/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/tyv/activity.linfo b/locale/tyv/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/tyv/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/tzm/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/tzm/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..53ce0ce --- /dev/null +++ b/locale/tzm/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/tzm/activity.linfo b/locale/tzm/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/tzm/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/tzo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/tzo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/tzo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/tzo/activity.linfo b/locale/tzo/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/tzo/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ug/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ug/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ug/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ug/activity.linfo b/locale/ug/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ug/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/uk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/uk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/uk/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/uk/activity.linfo b/locale/uk/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/uk/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/ur/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/ur/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/ur/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/ur/activity.linfo b/locale/ur/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/ur/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/vi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/vi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..bb5f3ee --- /dev/null +++ b/locale/vi/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/vi/activity.linfo b/locale/vi/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/vi/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/wa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/wa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/wa/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/wa/activity.linfo b/locale/wa/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/wa/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/yo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/yo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..12830d8 --- /dev/null +++ b/locale/yo/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/yo/activity.linfo b/locale/yo/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/yo/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/zh_CN/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/zh_CN/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/zh_CN/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/zh_CN/activity.linfo b/locale/zh_CN/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/zh_CN/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/zh_HK/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/zh_HK/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/zh_HK/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/zh_HK/activity.linfo b/locale/zh_HK/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/zh_HK/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/locale/zh_TW/LC_MESSAGES/org.sugarlabs.PathsActivity.mo b/locale/zh_TW/LC_MESSAGES/org.sugarlabs.PathsActivity.mo new file mode 100644 index 0000000..92e72cd --- /dev/null +++ b/locale/zh_TW/LC_MESSAGES/org.sugarlabs.PathsActivity.mo Binary files differ diff --git a/locale/zh_TW/activity.linfo b/locale/zh_TW/activity.linfo new file mode 100644 index 0000000..107ef74 --- /dev/null +++ b/locale/zh_TW/activity.linfo @@ -0,0 +1,2 @@ +[Activity] +name = Paths diff --git a/path.py b/path.py index 6415ec7..46344bf 100755 --- a/path.py +++ b/path.py @@ -1,6 +1,8 @@ #!/usr/bin/env python #Copyright (c) 2011 Walter Bender +# Port To GTK3: +# Ignacio Rodriguez # 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 @@ -12,7 +14,7 @@ # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA -import gtk +from gi.repository import Gdk, Gtk from gettext import gettext as _ import os @@ -25,18 +27,18 @@ class PathMain: self.r = 0 # create a new window - self.win = gtk.Window(gtk.WINDOW_TOPLEVEL) + self.win = Gtk.Window(Gtk.WindowType.TOPLEVEL) self.win.maximize() self.win.set_title("%s: %s" % (_("Paths"), _("Move tiles to make a path."))) - self.win.connect("delete_event", lambda w,e: gtk.main_quit()) + self.win.connect("delete_event", lambda w,e: Gtk.main_quit()) # A vbox to put a menu and the canvas in - vbox = gtk.VBox(False, 0) + vbox = Gtk.VBox(False, 0) self.win.add(vbox) vbox.show() - canvas = gtk.DrawingArea() + canvas = Gtk.DrawingArea() vbox.pack_end(canvas, True, True) canvas.show() @@ -59,7 +61,7 @@ class PathMain: def main(): - gtk.main() + Gtk.main() return 0 if __name__ == "__main__": diff --git a/po/af.po b/po/af.po index 7036af2..fd4ccf2 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ak.po b/po/ak.po index 7036af2..7559841 100644 --- a/po/ak.po +++ b/po/ak.po @@ -7,101 +7,100 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"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" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/ar.po b/po/ar.po index 7036af2..fd4ccf2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ar_SY.po b/po/ar_SY.po new file mode 100644 index 0000000..fd4ccf2 --- /dev/null +++ b/po/ar_SY.po @@ -0,0 +1,78 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"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" + +#: activity/activity.info:2 path.py:31 +msgid "Paths" +msgstr "" + +#: PathsActivity.py:164 +msgid "Game" +msgstr "" + +#: PathsActivity.py:170 +msgid "Start a new game." +msgstr "" + +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" + +#: PathsActivity.py:178 +msgid "Turn complete" +msgstr "" + +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" + +#: PathsActivity.py:377 +msgid "has joined." +msgstr "" + +#: PathsActivity.py:440 +msgid "take a turn." +msgstr "" + +#: game.py:197 +msgid "It is my turn." +msgstr "" + +#: game.py:216 +msgid "I took my turn." +msgstr "" + +#: game.py:225 +msgid "Waiting for " +msgstr "" + +#: game.py:248 +msgid "robot" +msgstr "" + +#: game.py:351 +msgid "Game over" +msgstr "" + +#: game.py:406 +msgid "Robot unable to play" +msgstr "" + +#: path.py:32 +msgid "Move tiles to make a path." +msgstr "" diff --git a/po/ay.po b/po/ay.po new file mode 100644 index 0000000..fd4ccf2 --- /dev/null +++ b/po/ay.po @@ -0,0 +1,78 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"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" + +#: activity/activity.info:2 path.py:31 +msgid "Paths" +msgstr "" + +#: PathsActivity.py:164 +msgid "Game" +msgstr "" + +#: PathsActivity.py:170 +msgid "Start a new game." +msgstr "" + +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" + +#: PathsActivity.py:178 +msgid "Turn complete" +msgstr "" + +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" + +#: PathsActivity.py:377 +msgid "has joined." +msgstr "" + +#: PathsActivity.py:440 +msgid "take a turn." +msgstr "" + +#: game.py:197 +msgid "It is my turn." +msgstr "" + +#: game.py:216 +msgid "I took my turn." +msgstr "" + +#: game.py:225 +msgid "Waiting for " +msgstr "" + +#: game.py:248 +msgid "robot" +msgstr "" + +#: game.py:351 +msgid "Game over" +msgstr "" + +#: game.py:406 +msgid "Robot unable to play" +msgstr "" + +#: path.py:32 +msgid "Move tiles to make a path." +msgstr "" diff --git a/po/aym.po b/po/aym.po index b770b99..16847fb 100644 --- a/po/aym.po +++ b/po/aym.po @@ -1,7 +1,3 @@ -# 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. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -10,13 +6,14 @@ msgstr "" "PO-Revision-Date: 2011-11-26 05:02+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: aym\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" +# "Senderos" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" msgstr "" @@ -26,14 +23,17 @@ msgstr "" msgid "Game" msgstr "Anataña" +# "Empieza juego nuevo." #: PathsActivity.py:174 msgid "Start a new game." msgstr "" +# "Juege con el robot." #: PathsActivity.py:178 msgid "Play with the robot." msgstr "" +# "Turno completo" #: PathsActivity.py:187 msgid "Turn complete" msgstr "" @@ -43,70 +43,87 @@ msgstr "" msgid "Help" msgstr "Yanapt'awi" +# "Puntuacion: " #: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 msgid "Score: " msgstr "" +# "Iniciar un juego después de que todos se hayan unido." #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." msgstr "" +# "Sólo quien comparte puede empezar una partida nueva." #: PathsActivity.py:357 msgid "Only the sharer can start a new game." msgstr "" +# "El robot se desactiva cuando se juega con otra persona." #: PathsActivity.py:360 msgid "The robot is disabled when sharing." msgstr "" +# "Se a unido." #: PathsActivity.py:423 msgid "has joined." msgstr "" +# "Tomar un turno." #: PathsActivity.py:493 msgid "take a turn." msgstr "" +# "Haga clic después de tomar su turno." #: game.py:204 msgid "Click after taking your turn." msgstr "" +# "Es su turno." #: game.py:205 msgid "It is your turn." msgstr "" +# "Juego teminado" #: game.py:217 game.py:488 msgid "Game over" msgstr "" +# "Hay errores - todavía es su turno." #: game.py:240 msgid "There are errors—it is still your turn." msgstr "" +# "Ya tomó su turno." #: game.py:262 msgid "You took your turn." msgstr "" +# "robot" #: game.py:265 msgid "robot" msgstr "" +# "Espere su turno." #: game.py:295 msgid "Wait your turn." msgstr "" +# "Esperando a" #: game.py:296 msgid "Waiting for" msgstr "" +# "No se puede jugar." #: game.py:561 msgid "Nowhere to play." msgstr "" +# "El robot no puede Jugar" #: game.py:580 msgid "Robot unable to play" msgstr "" +# "Mueva los bloques para hacer un sendero." #: path.py:31 msgid "Move tiles to make a path." msgstr "" diff --git a/po/bg.po b/po/bg.po index 7036af2..fd4ccf2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/bi.po b/po/bi.po index 7036af2..fd4ccf2 100644 --- a/po/bi.po +++ b/po/bi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/bn.po b/po/bn.po index 7036af2..fd4ccf2 100644 --- a/po/bn.po +++ b/po/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/bn_IN.po b/po/bn_IN.po index 7036af2..fd4ccf2 100644 --- a/po/bn_IN.po +++ b/po/bn_IN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/bs.po b/po/bs.po index 7036af2..fd4ccf2 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ca.po b/po/ca.po index 7036af2..fd4ccf2 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/cpp.po b/po/cpp.po index 7036af2..fd4ccf2 100644 --- a/po/cpp.po +++ b/po/cpp.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/cs.po b/po/cs.po index 9d07df8..80cb7bf 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: 2011-03-18 05:59+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "Hra" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/de.po b/po/de.po index cb05426..fd4ccf2 100644 --- a/po/de.po +++ b/po/de.po @@ -2,120 +2,77 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-01-22 08:25+0200\n" -"Last-Translator: Chris \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" -msgstr "Pfade" +msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" -msgstr "Spiel" +msgstr "" -#: PathsActivity.py:174 -#, fuzzy +#: PathsActivity.py:170 msgid "Start a new game." -msgstr "Ein neues Spiel beginnen." +msgstr "" -#: PathsActivity.py:178 -#, fuzzy -msgid "Play with the robot." -msgstr "Spiele mit dem Roboter." +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" -#: PathsActivity.py:187 -#, fuzzy +#: PathsActivity.py:178 msgid "Turn complete" -msgstr "Runde beendet" - -#: PathsActivity.py:193 -msgid "Help" -msgstr "Hilfe" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -#, fuzzy -msgid "Score: " -msgstr "Punktestand: " - -#: PathsActivity.py:348 -#, fuzzy -msgid "Start a new game once everyone has joined." -msgstr "Beginne ein neues Spiel, sobald alle mitspielen wollen." - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 -#, fuzzy +#: PathsActivity.py:377 msgid "has joined." -msgstr "will mitspielen." +msgstr "" -#: PathsActivity.py:493 -#, fuzzy +#: PathsActivity.py:440 msgid "take a turn." -msgstr "Mache deinen Zug." - -#: game.py:204 -#, fuzzy -msgid "Click after taking your turn." -msgstr "Klicke nachdem dein Zug beendet ist." - -#: game.py:205 -msgid "It is your turn." -msgstr "Du bist dran." +msgstr "" -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." -msgstr "Es gibt Fehler – Du bist immer noch am Zug." +#: game.py:216 +msgid "I took my turn." +msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" -msgstr "Roboter" - -#: game.py:295 -#, fuzzy -msgid "Wait your turn." -msgstr "Warte, bis du am Zug bist." - -#: game.py:296 -msgid "Waiting for" msgstr "" -#: game.py:561 -#, fuzzy -msgid "Nowhere to play." -msgstr "Es kann nirgendwo gespielt werden." +#: game.py:351 +msgid "Game over" +msgstr "" -#: game.py:580 -#, fuzzy +#: game.py:406 msgid "Robot unable to play" -msgstr "Der Roboter kann nicht spielen." +msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/dz.po b/po/dz.po index 7036af2..fd4ccf2 100644 --- a/po/dz.po +++ b/po/dz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/el.po b/po/el.po index 58a00a8..a38e6b3 100644 --- a/po/el.po +++ b/po/el.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-11-03 03:48+0200\n" -"Last-Translator: Chris \n" +"PO-Revision-Date: 2011-08-07 15:50+0200\n" +"Last-Translator: Yannis \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Pootle 2.0.1\n" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" @@ -35,7 +35,7 @@ msgstr "Παίξτε με το ρομπότ" #: PathsActivity.py:187 msgid "Turn complete" -msgstr "Στροφή πλήρης" +msgstr "" #: PathsActivity.py:193 msgid "Help" @@ -46,8 +46,9 @@ msgid "Score: " msgstr "Βαθμολογία: " #: PathsActivity.py:348 +#, fuzzy msgid "Start a new game once everyone has joined." -msgstr "Ξεκινήστε νέο παιχνίδι όταν όλοι έχουν συνδεθεί." +msgstr "Ξεκινήστε νέο παιχνίδι όταν όλοι έχουν συνδεθεί" #: PathsActivity.py:357 msgid "Only the sharer can start a new game." @@ -55,7 +56,7 @@ msgstr "Μόνον ο διαμοιραστής μπορεί να ξεκινήσ #: PathsActivity.py:360 msgid "The robot is disabled when sharing." -msgstr "Το ρομπότ απενεργοποιείται όταν υπάρχει διαμοιρασμός." +msgstr "" #: PathsActivity.py:423 msgid "has joined." @@ -63,11 +64,11 @@ msgstr "έχει ενωθεί." #: PathsActivity.py:493 msgid "take a turn." -msgstr "Πάρτε μια στροφή." +msgstr "" #: game.py:204 msgid "Click after taking your turn." -msgstr "Κάντε κλικ αφού στρίψετε." +msgstr "" #: game.py:205 msgid "It is your turn." @@ -79,27 +80,29 @@ msgstr "Τέλος παιχνιδιού" #: game.py:240 msgid "There are errors—it is still your turn." -msgstr "Υπάρχουν σφάλματα- είναι ακόμη η σειρά σου." +msgstr "" #: game.py:262 msgid "You took your turn." -msgstr "Πήρατε τη στροφή σας." +msgstr "" #: game.py:265 msgid "robot" msgstr "ρομπότ" #: game.py:295 +#, fuzzy msgid "Wait your turn." -msgstr "Περιμένετε τη σειρά σας." +msgstr "Είναι η σειρά σου" #: game.py:296 +#, fuzzy msgid "Waiting for" msgstr "Αναμονή για" #: game.py:561 msgid "Nowhere to play." -msgstr "Δεν υπάρχει μέρος για παιχνίδι." +msgstr "" #: game.py:580 msgid "Robot unable to play" diff --git a/po/fa.po b/po/fa.po index 7036af2..fd4ccf2 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/fa_AF.po b/po/fa_AF.po index 7036af2..fd4ccf2 100644 --- a/po/fa_AF.po +++ b/po/fa_AF.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ff.po b/po/ff.po index 7036af2..fd4ccf2 100644 --- a/po/ff.po +++ b/po/ff.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/fi.po b/po/fi.po index 7036af2..fd4ccf2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/fil.po b/po/fil.po index 7036af2..fd4ccf2 100644 --- a/po/fil.po +++ b/po/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/fr.po b/po/fr.po index 25ec9fe..e8eb369 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-09-29 08:44+0200\n" -"Last-Translator: Chris \n" +"PO-Revision-Date: 2011-09-17 10:46+0200\n" +"Last-Translator: samy boutayeb \n" "Language-Team: LANGUAGE \n" -"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" +"X-Generator: Pootle 2.0.1\n" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" @@ -43,7 +43,7 @@ msgstr "Aide" #: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 msgid "Score: " -msgstr "Résultat : " +msgstr "Résultat :" #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." diff --git a/po/gu.po b/po/gu.po index 7036af2..fd4ccf2 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ha.po b/po/ha.po index 7036af2..fd4ccf2 100644 --- a/po/ha.po +++ b/po/ha.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/he.po b/po/he.po index 7036af2..fd4ccf2 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/hi.po b/po/hi.po index 7036af2..fd4ccf2 100644 --- a/po/hi.po +++ b/po/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ht.po b/po/ht.po index 7036af2..fd4ccf2 100644 --- a/po/ht.po +++ b/po/ht.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/hu.po b/po/hu.po index 7036af2..fd4ccf2 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/hus.po b/po/hus.po index 30ab216..76f6d32 100644 --- a/po/hus.po +++ b/po/hus.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-03-02 05:13+0200\n" +"PO-Revision-Date: 2011-08-19 07:58+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: hus\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" +"X-Generator: Pootle 2.0.1\n" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" @@ -27,7 +27,7 @@ msgstr "Ubat'intaláb" #: PathsActivity.py:174 msgid "Start a new game." -msgstr "Tujél ít ubat'intaláb." +msgstr "Tujél ít ubat'intaláb" #: PathsActivity.py:178 msgid "Play with the robot." @@ -43,7 +43,7 @@ msgstr "Tolmiy" #: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 msgid "Score: " -msgstr "Xaludh tukmaxtaláb: " +msgstr "Xaludh tukmaxtaláb " #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." @@ -59,52 +59,52 @@ msgstr "" #: PathsActivity.py:360 msgid "The robot is disabled when sharing." msgstr "" -"An inkidh pat'ál ubat'láb in jilál ti t'ojnal tam k'wajat ti ubat'náb k'al " +"An inkidh pat'ál ubat'láb in jilál ti t'ojnal tam k'wajat ti ubat'náb k'al " "k'e'at i atikláb." #: PathsActivity.py:423 msgid "has joined." -msgstr "ani jayej junkun." +msgstr "Ani jayej junkun" #: PathsActivity.py:493 msgid "take a turn." -msgstr "ki yak'wa' jún i aykidh k'ij." +msgstr "Ki yak'wa' jún i aykidh k'ij." #: game.py:204 msgid "Click after taking your turn." -msgstr "Ka ni'chij talvel tam kin bajuw ayláb." +msgstr "ka ni'chij talvel tam kin bajuw ayláb" #: game.py:205 msgid "It is your turn." -msgstr "Pelits a jolat." +msgstr "Pelits a jolat" #: game.py:217 game.py:488 msgid "Game over" -msgstr "Talits an ubat'intaláb" +msgstr "talits an ubat'intaláb" #: game.py:240 msgid "There are errors—it is still your turn." -msgstr "Wa'ats an uk'pintláb - pelaye' a jolat." +msgstr "wa'ats an uk'pintláb - pelaye' a jolat" #: game.py:262 msgid "You took your turn." -msgstr "A uma'its a jolat." +msgstr "A uma'its a jolat" #: game.py:265 msgid "robot" -msgstr "pat'al atikláb" +msgstr "Pat'al atikláb" #: game.py:295 msgid "Wait your turn." -msgstr "Ka aychíj a jolat." +msgstr "ka aychíj a jolat" #: game.py:296 msgid "Waiting for" -msgstr "Aychal a" +msgstr "aychal a" #: game.py:561 msgid "Nowhere to play." -msgstr "Yab ka ejtow kit ubat'in." +msgstr "yab ka ejtow kit ubat'in" #: game.py:580 msgid "Robot unable to play" @@ -112,4 +112,4 @@ msgstr "An pat'al atikláb yab in ejtowal ti ubat'" #: path.py:31 msgid "Move tiles to make a path." -msgstr "Ka nixk'a an t'ujub kabal ka tsejka' jun i bel." +msgstr "ka nixk'a an t'ujub kabal ka tsejka' jun i bel" diff --git a/po/id.po b/po/id.po index 7036af2..fd4ccf2 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ig.po b/po/ig.po index 7036af2..fd4ccf2 100644 --- a/po/ig.po +++ b/po/ig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/is.po b/po/is.po index 7036af2..fd4ccf2 100644 --- a/po/is.po +++ b/po/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/it.po b/po/it.po index 097744f..fddc2f9 100644 --- a/po/it.po +++ b/po/it.po @@ -6,113 +6,74 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-10-30 03:44+0200\n" -"Last-Translator: Chris \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: 2011-03-16 18:35+0200\n" +"Last-Translator: Carlo Falciola \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Pootle 2.0.1\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "Tracce" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "Partita" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." -msgstr "Avvia una nuova partita." +msgstr "Avvia una nuova partita" -#: PathsActivity.py:178 +#: PathsActivity.py:174 msgid "Play with the robot." -msgstr "" +msgstr "Gioca contro il computer." -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." -msgstr "" +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "E' il tuo turno." -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." +#: game.py:197 +#, fuzzy +msgid "It is my turn." msgstr "E' il tuo turno." -#: game.py:217 game.py:488 -msgid "Game over" -msgstr "Partita terminata" - -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -#, fuzzy -msgid "Wait your turn." -msgstr "E' il tuo turno." - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." -msgstr "" +#: game.py:351 +msgid "Game over" +msgstr "Partita terminata" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "Robot non può più giocare" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "Muovi le tessere per creare un percorso." - -#~ msgid "Play with the computer." -#~ msgstr "Gioca contro il computer." - -#, fuzzy -#~ msgid "It is my turn." -#~ msgstr "E' il tuo turno." diff --git a/po/ja.po b/po/ja.po index 7036af2..fd4ccf2 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/kn.po b/po/kn.po index 7036af2..fd4ccf2 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ko.po b/po/ko.po index 7036af2..fd4ccf2 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/kos.po b/po/kos.po index 7036af2..fd4ccf2 100644 --- a/po/kos.po +++ b/po/kos.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ku.po b/po/ku.po index 7036af2..7559841 100644 --- a/po/ku.po +++ b/po/ku.po @@ -7,101 +7,100 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"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" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/lt.po b/po/lt.po index 7036af2..7559841 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,101 +7,100 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"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" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/lv.po b/po/lv.po index 7036af2..fd4ccf2 100644 --- a/po/lv.po +++ b/po/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/mg.po b/po/mg.po index 7036af2..fd4ccf2 100644 --- a/po/mg.po +++ b/po/mg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/mk.po b/po/mk.po index 7036af2..fd4ccf2 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ml.po b/po/ml.po index 7036af2..fd4ccf2 100644 --- a/po/ml.po +++ b/po/ml.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/mn.po b/po/mn.po index 7036af2..fd4ccf2 100644 --- a/po/mn.po +++ b/po/mn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/mr.po b/po/mr.po index 7036af2..fd4ccf2 100644 --- a/po/mr.po +++ b/po/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ms.po b/po/ms.po index 7036af2..fd4ccf2 100644 --- a/po/ms.po +++ b/po/ms.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/mvo.po b/po/mvo.po index 7036af2..fd4ccf2 100644 --- a/po/mvo.po +++ b/po/mvo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/na.po b/po/na.po index 7036af2..fd4ccf2 100644 --- a/po/na.po +++ b/po/na.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/nah.po b/po/nah.po index 7036af2..7559841 100644 --- a/po/nah.po +++ b/po/nah.po @@ -7,101 +7,100 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"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" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/nb.po b/po/nb.po index 7036af2..fd4ccf2 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ne.po b/po/ne.po index 6a0e722..26ead73 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,105 +6,73 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-07-15 04:06+0200\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: 2011-04-12 05:38+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: ne\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.1\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" -msgstr "बाटाहरु" +msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "खेल" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." -msgstr "नयाँ खेल सुरु गर ।" +msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." -msgstr "रोबटसगँ खेल ।" +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" -msgstr "पालो समाप्त" - -#: PathsActivity.py:193 -msgid "Help" -msgstr "सहयोग" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "अंक: " - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "सबैजना सम्मेलित भएपछि नयाँ खेल सुरु गर ।" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "केबल आँधियारले मात्र नयाँ खेल सुरु गर्न सक्छ ।" +msgstr "" -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." -msgstr "रोबट सेयरिँग गर्दा अक्षम भयो ।" +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." -msgstr "जोड़ियो ।" +msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." -msgstr "पालि लिउ ।" - -#: game.py:204 -msgid "Click after taking your turn." -msgstr "आफ्नो पालो लिएपछि क्लिक गर ।" - -#: game.py:205 -msgid "It is your turn." -msgstr "तिम्रो पालो हो ।" +msgstr "" -#: game.py:217 game.py:488 -msgid "Game over" -msgstr "खेल सकियो" +#: game.py:197 +msgid "It is my turn." +msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." -msgstr "त्यहाँ त्रुटिहरु छन्- तिम्रो अझै पालो छ ।" +#: game.py:216 +msgid "I took my turn." +msgstr "" -#: game.py:262 -msgid "You took your turn." -msgstr "तिमीले आफ्नो पालो लियौ ।" +#: game.py:225 +msgid "Waiting for " +msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" -msgstr "रोबट" - -#: game.py:295 -msgid "Wait your turn." -msgstr "आफ्नो पालो कुर ।" - -#: game.py:296 -msgid "Waiting for" -msgstr "को लागि पर्खि राख्या छु" +msgstr "" -#: game.py:561 -msgid "Nowhere to play." -msgstr "कतैपनि खेल्न ठाँउ छैन ।" +#: game.py:351 +msgid "Game over" +msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" -msgstr "रोबट खेल्न असमर्थ छ" +msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." -msgstr "बाटो बनाउन टाइलहरु हटाउ ।" +msgstr "" diff --git a/po/nl.po b/po/nl.po index 94f14ac..fd4ccf2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,109 +2,77 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-11-04 10:21+0200\n" -"Last-Translator: whe \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" -msgstr "Paden" +msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" -msgstr "Spel" +msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." -msgstr "Start een nieuw spel." +msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." -msgstr "Speel met de robot." +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" -msgstr "Draai volledig" - -#: PathsActivity.py:193 -msgid "Help" -msgstr "Help" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "Score: " - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "Start een nieuw spel zodra iedereen deelneemt." - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "Alleen de deler kan een nieuw spel starten." +msgstr "" -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." -msgstr "De robot is invalide bij delen." +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." -msgstr "neemt deel." +msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." -msgstr "de beurt nemen." - -#: game.py:204 -msgid "Click after taking your turn." -msgstr "Klik nadat je de beurt gehad hebt." - -#: game.py:205 -msgid "It is your turn." -msgstr "Het is jouw beurt." +msgstr "" -#: game.py:217 game.py:488 -msgid "Game over" -msgstr "Spel klaar" +#: game.py:197 +msgid "It is my turn." +msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." -msgstr "Er zijn fouten--het is toch jouw beurt." +#: game.py:216 +msgid "I took my turn." +msgstr "" -#: game.py:262 -msgid "You took your turn." -msgstr "Jij hebt je beurt gehad." +#: game.py:225 +msgid "Waiting for " +msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" -msgstr "robot" - -#: game.py:295 -msgid "Wait your turn." -msgstr "Wacht op je beurt." - -#: game.py:296 -msgid "Waiting for" -msgstr "Wacht op" +msgstr "" -#: game.py:561 -msgid "Nowhere to play." -msgstr "Nergens om te spelen." +#: game.py:351 +msgid "Game over" +msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" -msgstr "Robot kan niet spelen" +msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." -msgstr "Beweeg tegels om een pad te maken." +msgstr "" diff --git a/po/nn.po b/po/nn.po index 7036af2..fd4ccf2 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/pa.po b/po/pa.po index 7036af2..fd4ccf2 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/pap.po b/po/pap.po index 7036af2..fd4ccf2 100644 --- a/po/pap.po +++ b/po/pap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/pis.po b/po/pis.po new file mode 100644 index 0000000..fd4ccf2 --- /dev/null +++ b/po/pis.po @@ -0,0 +1,78 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"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" + +#: activity/activity.info:2 path.py:31 +msgid "Paths" +msgstr "" + +#: PathsActivity.py:164 +msgid "Game" +msgstr "" + +#: PathsActivity.py:170 +msgid "Start a new game." +msgstr "" + +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" + +#: PathsActivity.py:178 +msgid "Turn complete" +msgstr "" + +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" + +#: PathsActivity.py:377 +msgid "has joined." +msgstr "" + +#: PathsActivity.py:440 +msgid "take a turn." +msgstr "" + +#: game.py:197 +msgid "It is my turn." +msgstr "" + +#: game.py:216 +msgid "I took my turn." +msgstr "" + +#: game.py:225 +msgid "Waiting for " +msgstr "" + +#: game.py:248 +msgid "robot" +msgstr "" + +#: game.py:351 +msgid "Game over" +msgstr "" + +#: game.py:406 +msgid "Robot unable to play" +msgstr "" + +#: path.py:32 +msgid "Move tiles to make a path." +msgstr "" diff --git a/po/pl.po b/po/pl.po index a89aaf1..6ec4e30 100644 --- a/po/pl.po +++ b/po/pl.po @@ -10,7 +10,7 @@ msgstr "" "PO-Revision-Date: 2011-12-09 17:21+0200\n" "Last-Translator: FRKS \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/ps.po b/po/ps.po index 7036af2..fd4ccf2 100644 --- a/po/ps.po +++ b/po/ps.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/pt.po b/po/pt.po index 2a6f488..f077218 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,10 +7,10 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-04-03 00:09+0200\n" -"Last-Translator: Eduardo H. \n" +"PO-Revision-Date: 2012-01-23 03:34+0200\n" +"Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,7 +27,7 @@ msgstr "Jogo" #: PathsActivity.py:174 msgid "Start a new game." -msgstr "Iniciar um jogo novo." +msgstr "Inicia um novo jogo." #: PathsActivity.py:178 msgid "Play with the robot." @@ -47,7 +47,7 @@ msgstr "Pontuação: " #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." -msgstr "Inicia um novo jogo assim que todos se tenham juntado." +msgstr "Inicia um novo jogo assim que todos tiverem entrado." #: PathsActivity.py:357 msgid "Only the sharer can start a new game." @@ -59,7 +59,7 @@ msgstr "O robô está desabilitado quando se está em partilha." #: PathsActivity.py:423 msgid "has joined." -msgstr "juntou-se." +msgstr "entrou." #: PathsActivity.py:493 msgid "take a turn." diff --git a/po/pt_BR.po b/po/pt_BR.po index 7036af2..fd4ccf2 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/qu.po b/po/qu.po new file mode 100644 index 0000000..fd4ccf2 --- /dev/null +++ b/po/qu.po @@ -0,0 +1,78 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"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" + +#: activity/activity.info:2 path.py:31 +msgid "Paths" +msgstr "" + +#: PathsActivity.py:164 +msgid "Game" +msgstr "" + +#: PathsActivity.py:170 +msgid "Start a new game." +msgstr "" + +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" + +#: PathsActivity.py:178 +msgid "Turn complete" +msgstr "" + +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" + +#: PathsActivity.py:377 +msgid "has joined." +msgstr "" + +#: PathsActivity.py:440 +msgid "take a turn." +msgstr "" + +#: game.py:197 +msgid "It is my turn." +msgstr "" + +#: game.py:216 +msgid "I took my turn." +msgstr "" + +#: game.py:225 +msgid "Waiting for " +msgstr "" + +#: game.py:248 +msgid "robot" +msgstr "" + +#: game.py:351 +msgid "Game over" +msgstr "" + +#: game.py:406 +msgid "Robot unable to play" +msgstr "" + +#: path.py:32 +msgid "Move tiles to make a path." +msgstr "" diff --git a/po/quz.po b/po/quz.po index 8bc7488..f539b47 100644 --- a/po/quz.po +++ b/po/quz.po @@ -1,7 +1,3 @@ -# 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. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -10,13 +6,14 @@ msgstr "" "PO-Revision-Date: 2011-11-26 09:05+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"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" +# "Senderos" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" msgstr "" @@ -26,14 +23,17 @@ msgstr "" msgid "Game" msgstr "Puqllay" +# "Empieza juego nuevo." #: PathsActivity.py:174 msgid "Start a new game." msgstr "" +# "Juege con el robot." #: PathsActivity.py:178 msgid "Play with the robot." msgstr "" +# "Turno completo" #: PathsActivity.py:187 msgid "Turn complete" msgstr "" @@ -43,70 +43,87 @@ msgstr "" msgid "Help" msgstr "Yanapay" +# "Puntuacion: " #: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 msgid "Score: " msgstr "" +# "Iniciar un juego después de que todos se hayan unido." #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." msgstr "" +# "Sólo quien comparte puede empezar una partida nueva." #: PathsActivity.py:357 msgid "Only the sharer can start a new game." msgstr "" +# "El robot se desactiva cuando se juega con otra persona." #: PathsActivity.py:360 msgid "The robot is disabled when sharing." msgstr "" +# "Se a unido." #: PathsActivity.py:423 msgid "has joined." msgstr "" +# "Tomar un turno." #: PathsActivity.py:493 msgid "take a turn." msgstr "" +# "Haga clic después de tomar su turno." #: game.py:204 msgid "Click after taking your turn." msgstr "" +# "Es su turno." #: game.py:205 msgid "It is your turn." msgstr "" +# "Juego teminado" #: game.py:217 game.py:488 msgid "Game over" msgstr "" +# "Hay errores - todavía es su turno." #: game.py:240 msgid "There are errors—it is still your turn." msgstr "" +# "Ya tomó su turno." #: game.py:262 msgid "You took your turn." msgstr "" +# "robot" #: game.py:265 msgid "robot" msgstr "" +# "Espere su turno." #: game.py:295 msgid "Wait your turn." msgstr "" +# "Esperando a" #: game.py:296 msgid "Waiting for" msgstr "" +# "No se puede jugar." #: game.py:561 msgid "Nowhere to play." msgstr "" +# "El robot no puede Jugar" #: game.py:580 msgid "Robot unable to play" msgstr "" +# "Mueva los bloques para hacer un sendero." #: path.py:31 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ro.po b/po/ro.po index 7036af2..fd4ccf2 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ru.po b/po/ru.po index 7036af2..fd4ccf2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/rw.po b/po/rw.po index 67bd762..9341203 100644 --- a/po/rw.po +++ b/po/rw.po @@ -6,105 +6,73 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: 2011-04-05 22:39+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: rw\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.1\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "Umukino" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sd.po b/po/sd.po index 7036af2..fd4ccf2 100644 --- a/po/sd.po +++ b/po/sd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/si.po b/po/si.po index 7036af2..fd4ccf2 100644 --- a/po/si.po +++ b/po/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sk.po b/po/sk.po index 5ce7715..5b786f2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,105 +6,73 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: 2011-04-01 17:35+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "Hra" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sl.po b/po/sl.po index 7036af2..fd4ccf2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sm.po b/po/sm.po index 7036af2..fd4ccf2 100644 --- a/po/sm.po +++ b/po/sm.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sr.po b/po/sr.po index 7036af2..fd4ccf2 100644 --- a/po/sr.po +++ b/po/sr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/st.po b/po/st.po index 7036af2..fd4ccf2 100644 --- a/po/st.po +++ b/po/st.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sv.po b/po/sv.po index 7036af2..fd4ccf2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/sw.po b/po/sw.po index d27d547..fd4ccf2 100644 --- a/po/sw.po +++ b/po/sw.po @@ -2,111 +2,77 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-03-12 02:17+0200\n" -"Last-Translator: Chris \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 -#, fuzzy +#: PathsActivity.py:164 msgid "Game" -msgstr "Mchezo" +msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -#, fuzzy -msgid "Help" -msgstr "Msaada" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:205 -msgid "It is your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." -msgstr "" - -#: game.py:262 -msgid "You took your turn." -msgstr "" - -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ta.po b/po/ta.po index 2c78e6f..3d12059 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-03-10 16:41+0200\n" -"Last-Translator: Chris \n" +"PO-Revision-Date: 2011-07-31 19:58+0200\n" +"Last-Translator: Thangamani \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Pootle 2.0.1\n" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" @@ -43,7 +43,7 @@ msgstr "உதவி" #: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 msgid "Score: " -msgstr "பெற்ற புள்ளி: " +msgstr "பெற்ற புள்ளி:" #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." diff --git a/po/te.po b/po/te.po index 7036af2..fd4ccf2 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/templates.po b/po/templates.po new file mode 100644 index 0000000..7431e1e --- /dev/null +++ b/po/templates.po @@ -0,0 +1,134 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-02 10:20-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.6.0\n" + +#: activity/activity.info:2 /home/walter/Desktop/abacus/abacus.py:49 +msgid "Abacus" +msgstr "" + +#: /home/walter/Desktop/abacus/abacus_window.py:548 +#: /home/walter/Desktop/abacus/abacus.py:70 +msgid "Reset" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:136 +#: /home/walter/Desktop/abacus/AbacusActivity.py:160 +msgid "Edit" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:146 +msgid "Q" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:158 +msgid "Project" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:159 +#: /home/walter/Desktop/abacus/AbacusActivity.py:208 +msgid "Custom" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:173 +#: /home/walter/Desktop/abacus/abacus.py:54 +msgid "Soroban" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:176 +#: /home/walter/Desktop/abacus/abacus.py:56 +msgid "Nepohualtzintzin" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:178 +#: /home/walter/Desktop/abacus/abacus.py:58 +msgid "Hexadecimal" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:180 +#: /home/walter/Desktop/abacus/abacus.py:57 +msgid "Binary" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:182 +#: /home/walter/Desktop/abacus/abacus.py:55 +msgid "Schety" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:184 +#: /home/walter/Desktop/abacus/abacus.py:59 +msgid "Fraction" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:186 +#: /home/walter/Desktop/abacus/abacus.py:61 +msgid "Caacupé" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:188 +#: /home/walter/Desktop/abacus/abacus.py:62 +msgid "Rods" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:191 +msgid "Rods:" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:194 +msgid "Top:" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:197 +msgid "Bottom:" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:201 +msgid "Factor:" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:204 +msgid "Base:" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:211 +msgid "Copy" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:213 +msgid "Paste" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:279 +#: /home/walter/Desktop/abacus/abacus.py:53 +msgid "Suanpan" +msgstr "" + +#: /home/walter/Desktop/abacus/AbacusActivity.py:281 +#: /home/walter/Desktop/abacus/abacus.py:60 +msgid "Decimal" +msgstr "" + +#: /home/walter/Desktop/abacus/abacus.py:73 +msgid "Quit" +msgstr "" diff --git a/po/th.po b/po/th.po index be32afe..2470bde 100644 --- a/po/th.po +++ b/po/th.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-03-09 10:38+0200\n" -"Last-Translator: Meechai \n" +"PO-Revision-Date: 2011-11-19 06:17+0200\n" +"Last-Translator: fah \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: activity/activity.info:2 game.py:189 path.py:30 msgid "Paths" -msgstr "Paths" +msgstr "เส้นทาง" #: PathsActivity.py:168 msgid "Game" @@ -35,7 +35,7 @@ msgstr "เล่นกับหุ่นยนต์" #: PathsActivity.py:187 msgid "Turn complete" -msgstr "เสร็จสิ้นรอบ" +msgstr "" #: PathsActivity.py:193 msgid "Help" @@ -47,31 +47,32 @@ msgstr "คะแนน: " #: PathsActivity.py:348 msgid "Start a new game once everyone has joined." -msgstr "เริ่มเกมใหม่ทันทีที่ทุกคนเข้าร่วม" +msgstr "" #: PathsActivity.py:357 msgid "Only the sharer can start a new game." -msgstr "สำหรับผู้มีส่วนร่วมเท่านั้นถึงจะเริ่มเกมใหม่ได้" +msgstr "" #: PathsActivity.py:360 msgid "The robot is disabled when sharing." -msgstr "หุ่นยนต์ไม่สามารถทำงานได้ขณะมีผู้อื่นใช้อยู่" +msgstr "" #: PathsActivity.py:423 msgid "has joined." -msgstr "ได้เข้าร่วม" +msgstr "" #: PathsActivity.py:493 msgid "take a turn." -msgstr "ถึงรอบคุณแล้ว" +msgstr "" #: game.py:204 msgid "Click after taking your turn." -msgstr "คลิกหลังจบรอบ" +msgstr "" #: game.py:205 +#, fuzzy msgid "It is your turn." -msgstr "นี่คือรอบคุณ" +msgstr "รอรอบของคุณ" #: game.py:217 game.py:488 msgid "Game over" @@ -79,7 +80,7 @@ msgstr "จบเกม" #: game.py:240 msgid "There are errors—it is still your turn." -msgstr "มีข้อผิดพลาด - ยังเป็นรอบของคุณ" +msgstr "มีข้อผิดพลาด - นี้เป็นรอบของคุณ" #: game.py:262 msgid "You took your turn." @@ -107,4 +108,4 @@ msgstr "หุ่นยนต์ไม่สามารถเล่นได้ #: path.py:31 msgid "Move tiles to make a path." -msgstr "ย้ายแผ่นป้ายเพื่อสร้างเส้นทาง" +msgstr "" diff --git a/po/ton.po b/po/ton.po new file mode 100644 index 0000000..fd4ccf2 --- /dev/null +++ b/po/ton.po @@ -0,0 +1,78 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"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" + +#: activity/activity.info:2 path.py:31 +msgid "Paths" +msgstr "" + +#: PathsActivity.py:164 +msgid "Game" +msgstr "" + +#: PathsActivity.py:170 +msgid "Start a new game." +msgstr "" + +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" + +#: PathsActivity.py:178 +msgid "Turn complete" +msgstr "" + +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" + +#: PathsActivity.py:377 +msgid "has joined." +msgstr "" + +#: PathsActivity.py:440 +msgid "take a turn." +msgstr "" + +#: game.py:197 +msgid "It is my turn." +msgstr "" + +#: game.py:216 +msgid "I took my turn." +msgstr "" + +#: game.py:225 +msgid "Waiting for " +msgstr "" + +#: game.py:248 +msgid "robot" +msgstr "" + +#: game.py:351 +msgid "Game over" +msgstr "" + +#: game.py:406 +msgid "Robot unable to play" +msgstr "" + +#: path.py:32 +msgid "Move tiles to make a path." +msgstr "" diff --git a/po/tpi.po b/po/tpi.po new file mode 100644 index 0000000..fd4ccf2 --- /dev/null +++ b/po/tpi.po @@ -0,0 +1,78 @@ +# 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 "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"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" + +#: activity/activity.info:2 path.py:31 +msgid "Paths" +msgstr "" + +#: PathsActivity.py:164 +msgid "Game" +msgstr "" + +#: PathsActivity.py:170 +msgid "Start a new game." +msgstr "" + +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" + +#: PathsActivity.py:178 +msgid "Turn complete" +msgstr "" + +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" + +#: PathsActivity.py:377 +msgid "has joined." +msgstr "" + +#: PathsActivity.py:440 +msgid "take a turn." +msgstr "" + +#: game.py:197 +msgid "It is my turn." +msgstr "" + +#: game.py:216 +msgid "I took my turn." +msgstr "" + +#: game.py:225 +msgid "Waiting for " +msgstr "" + +#: game.py:248 +msgid "robot" +msgstr "" + +#: game.py:351 +msgid "Game over" +msgstr "" + +#: game.py:406 +msgid "Robot unable to play" +msgstr "" + +#: path.py:32 +msgid "Move tiles to make a path." +msgstr "" diff --git a/po/tr.po b/po/tr.po index 7036af2..fd4ccf2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/tvl.po b/po/tvl.po index 7036af2..fd4ccf2 100644 --- a/po/tvl.po +++ b/po/tvl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/tyv.po b/po/tyv.po index 7036af2..7559841 100644 --- a/po/tyv.po +++ b/po/tyv.po @@ -7,101 +7,100 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"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" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/tzm.po b/po/tzm.po index d4da744..7559841 100644 --- a/po/tzm.po +++ b/po/tzm.po @@ -2,106 +2,105 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-10-23 02:42+0200\n" -"Last-Translator: Chris \n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" -msgstr "ⵓⵔⴰⵔ" +msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/tzo.po b/po/tzo.po index 7036af2..fd4ccf2 100644 --- a/po/tzo.po +++ b/po/tzo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ug.po b/po/ug.po index 7036af2..fd4ccf2 100644 --- a/po/ug.po +++ b/po/ug.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/uk.po b/po/uk.po index 7036af2..fd4ccf2 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/ur.po b/po/ur.po index 1553857..fd4ccf2 100644 --- a/po/ur.po +++ b/po/ur.po @@ -2,112 +2,77 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2012-04-16 19:29+0200\n" -"Last-Translator: Chris \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 -#, fuzzy +#: activity/activity.info:2 path.py:31 msgid "Paths" -msgstr "راہیں" +msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -#, fuzzy -msgid "Help" -msgstr "مدد" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:205 -msgid "It is your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:217 game.py:488 -#, fuzzy -msgid "Game over" -msgstr "گیم ختم" - -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:262 -msgid "You took your turn." -msgstr "" - -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/vi.po b/po/vi.po index c398e63..bb85278 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,105 +6,73 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: 2011-04-13 23:45+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "Trò chơi" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/wa.po b/po/wa.po index 7036af2..fd4ccf2 100644 --- a/po/wa.po +++ b/po/wa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/yo.po b/po/yo.po index 7036af2..1fa783c 100644 --- a/po/yo.po +++ b/po/yo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-04-01 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,91 +17,91 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 game.py:179 path.py:30 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:174 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:180 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 +#: PathsActivity.py:184 msgid "Play with the robot." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:193 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 +#: PathsActivity.py:199 msgid "Help" msgstr "" -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 +#: PathsActivity.py:202 game.py:177 msgid "Score: " msgstr "" -#: PathsActivity.py:348 +#: PathsActivity.py:344 msgid "Start a new game once everyone has joined." msgstr "" -#: PathsActivity.py:357 +#: PathsActivity.py:353 msgid "Only the sharer can start a new game." msgstr "" -#: PathsActivity.py:360 +#: PathsActivity.py:356 msgid "The robot is disabled when sharing." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:418 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:483 msgid "take a turn." msgstr "" -#: game.py:204 +#: game.py:194 msgid "Click after taking your turn." msgstr "" -#: game.py:205 +#: game.py:195 msgid "It is your turn." msgstr "" -#: game.py:217 game.py:488 +#: game.py:207 game.py:208 game.py:212 game.py:450 msgid "Game over" msgstr "" -#: game.py:240 +#: game.py:231 msgid "There are errors—it is still your turn." msgstr "" -#: game.py:262 +#: game.py:253 msgid "You took your turn." msgstr "" -#: game.py:265 +#: game.py:256 msgid "robot" msgstr "" -#: game.py:295 +#: game.py:282 msgid "Wait your turn." msgstr "" -#: game.py:296 +#: game.py:283 msgid "Waiting for" msgstr "" -#: game.py:561 +#: game.py:494 msgid "Nowhere to play." msgstr "" -#: game.py:580 +#: game.py:521 msgid "Robot unable to play" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 75713c9..fd4ccf2 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -2,109 +2,77 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-12-18 17:27+0200\n" -"Last-Translator: lite \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.0.5\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" -msgstr "修路" +msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" -msgstr "游戏" +msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." -msgstr "开始新游戏" +msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." -msgstr "和机器人玩" +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" -msgstr "转动完成" - -#: PathsActivity.py:193 -msgid "Help" -msgstr "帮助" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "得分:" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "每个人都加入后马上开始新游戏。" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "只有分享者可以开始新游戏。" +msgstr "" -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." -msgstr "分享时机器人被禁用。" +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." -msgstr "已加入。" +msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." -msgstr "下一回合。" - -#: game.py:204 -msgid "Click after taking your turn." -msgstr "开始你回合,请点击。" - -#: game.py:205 -msgid "It is your turn." -msgstr "轮到你的回合了。" +msgstr "" -#: game.py:217 game.py:488 -msgid "Game over" -msgstr "游戏结束" +#: game.py:197 +msgid "It is my turn." +msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." -msgstr "有错误,仍然是你操作。" +#: game.py:216 +msgid "I took my turn." +msgstr "" -#: game.py:262 -msgid "You took your turn." -msgstr "开始你的回合。" +#: game.py:225 +msgid "Waiting for " +msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" -msgstr "机器人" - -#: game.py:295 -msgid "Wait your turn." -msgstr "等待你的回合。" - -#: game.py:296 -msgid "Waiting for" -msgstr "等待" +msgstr "" -#: game.py:561 -msgid "Nowhere to play." -msgstr "没有空余地方。" +#: game.py:351 +msgid "Game over" +msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" -msgstr "机器人不能玩。" +msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." -msgstr "移动方块,把道路连通。" +msgstr "" diff --git a/po/zh_HK.po b/po/zh_HK.po index 7036af2..fd4ccf2 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,94 +17,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." +#: PathsActivity.py:174 +msgid "Play with the computer." msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" msgstr "" -#: PathsActivity.py:193 -msgid "Help" -msgstr "" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "" - -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." +#: PathsActivity.py:181 +msgid "It is your turn." msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." msgstr "" -#: game.py:204 -msgid "Click after taking your turn." -msgstr "" - -#: game.py:205 -msgid "It is your turn." -msgstr "" - -#: game.py:217 game.py:488 -msgid "Game over" +#: game.py:197 +msgid "It is my turn." msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." +#: game.py:216 +msgid "I took my turn." msgstr "" -#: game.py:262 -msgid "You took your turn." +#: game.py:225 +msgid "Waiting for " msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" msgstr "" -#: game.py:295 -msgid "Wait your turn." -msgstr "" - -#: game.py:296 -msgid "Waiting for" -msgstr "" - -#: game.py:561 -msgid "Nowhere to play." +#: game.py:351 +msgid "Game over" msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index fd56561..fd4ccf2 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,118 +2,77 @@ # 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 "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-03 10:34-0400\n" -"PO-Revision-Date: 2011-07-24 19:20+0200\n" -"Last-Translator: Kenzen \n" +"POT-Creation-Date: 2011-03-21 00:30-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.0.1\n" +"X-Generator: Translate Toolkit 1.7.0\n" -#: activity/activity.info:2 game.py:189 path.py:30 +#: activity/activity.info:2 path.py:31 msgid "Paths" -msgstr "找路" +msgstr "" -#: PathsActivity.py:168 +#: PathsActivity.py:164 msgid "Game" -msgstr "遊戲" +msgstr "" -#: PathsActivity.py:174 +#: PathsActivity.py:170 msgid "Start a new game." -msgstr "開始新遊戲" +msgstr "" -#: PathsActivity.py:178 -msgid "Play with the robot." -msgstr "和電腦進行遊戲" +#: PathsActivity.py:174 +msgid "Play with the computer." +msgstr "" -#: PathsActivity.py:187 +#: PathsActivity.py:178 msgid "Turn complete" -msgstr "回合結束" - -#: PathsActivity.py:193 -msgid "Help" -msgstr "幫助" - -#: PathsActivity.py:196 PathsActivity.py:290 game.py:187 game.py:500 -msgid "Score: " -msgstr "分數:" - -#: PathsActivity.py:348 -msgid "Start a new game once everyone has joined." -msgstr "大家都加入了,開始新遊戲吧" - -#: PathsActivity.py:357 -msgid "Only the sharer can start a new game." -msgstr "只有發起者能開始新遊戲" +msgstr "" -#: PathsActivity.py:360 -msgid "The robot is disabled when sharing." -msgstr "分享模式時電腦不參加遊戲" +#: PathsActivity.py:181 +msgid "It is your turn." +msgstr "" -#: PathsActivity.py:423 +#: PathsActivity.py:377 msgid "has joined." -msgstr "剛剛加入" +msgstr "" -#: PathsActivity.py:493 +#: PathsActivity.py:440 msgid "take a turn." -msgstr "一個接一個" - -#: game.py:204 -msgid "Click after taking your turn." -msgstr "回合結束後請點選" - -#: game.py:205 -msgid "It is your turn." -msgstr "換你了" +msgstr "" -#: game.py:217 game.py:488 -msgid "Game over" -msgstr "遊戲結束" +#: game.py:197 +msgid "It is my turn." +msgstr "" -#: game.py:240 -msgid "There are errors—it is still your turn." -msgstr "出錯囉!仍然是你的回合" +#: game.py:216 +msgid "I took my turn." +msgstr "" -#: game.py:262 -msgid "You took your turn." -msgstr "你已經完成回合" +#: game.py:225 +msgid "Waiting for " +msgstr "" -#: game.py:265 +#: game.py:248 msgid "robot" -msgstr "機器人" - -#: game.py:295 -msgid "Wait your turn." -msgstr "等待你的回合" - -#: game.py:296 -msgid "Waiting for" -msgstr "等待" +msgstr "" -#: game.py:561 -msgid "Nowhere to play." -msgstr "現在不是你的回合" +#: game.py:351 +msgid "Game over" +msgstr "" -#: game.py:580 +#: game.py:406 msgid "Robot unable to play" -msgstr "機器人沒辦法玩" +msgstr "" -#: path.py:31 +#: path.py:32 msgid "Move tiles to make a path." -msgstr "移動磚瓦來建造路徑" - -#~ msgid "Play with the computer." -#~ msgstr "和電腦對戰" - -#~ msgid "It is my turn." -#~ msgstr "換我了" - -#~ msgid "I took my turn." -#~ msgstr "我用好了" +msgstr "" diff --git a/sprites.py b/sprites.py index baae94f..8cad6a6 100644 --- a/sprites.py +++ b/sprites.py @@ -24,7 +24,7 @@ ''' sprites.py is a simple sprites library for managing graphics objects, -'sprites', on a gtk.DrawingArea. It manages multiple sprites with +'sprites', on a Gtk.DrawingArea. It manages multiple sprites with methods such as move, hide, set_layer, etc. There are two classes: @@ -68,7 +68,7 @@ Example usage: # method for converting SVG to a gtk pixbuf def svg_str_to_pixbuf(svg_string): - pl = gtk.gdk.PixbufLoader('svg') + pl = GdkPixbuf.PixbufLoader('svg') pl.write(svg_string) pl.close() pixbuf = pl.get_pixbuf() @@ -76,21 +76,20 @@ def svg_str_to_pixbuf(svg_string): ''' -import pygtk -pygtk.require('2.0') -import gtk -import pango -import pangocairo +import gi +from gi.repository import Gtk, GdkPixbuf, Gdk +from gi.repository import Pango, PangoCairo import cairo + class Sprites: ''' A class for the list of sprites and everything they share in common ''' def __init__(self, widget): ''' Initialize an empty array of sprites ''' + self.cr = None self.widget = widget self.list = [] - self.cr = None def set_cairo_context(self, cr): ''' Cairo context may be set or reset after __init__ ''' @@ -98,7 +97,7 @@ class Sprites: def get_sprite(self, i): ''' Return a sprint from the array ''' - if i < 0 or i > len(self.list) - 1: + if i < 0 or i > len(self.list)-1: return(None) else: return(self.list[i]) @@ -160,11 +159,13 @@ class Sprite: ''' Initialize an individual sprite ''' self._sprites = sprites self.save_xy = (x, y) # remember initial (x, y) position - self.rect = gtk.gdk.Rectangle(int(x), int(y), 0, 0) + self.rect = [int(x), int(y), 0, 0] self._scale = [12] self._rescale = [True] self._horiz_align = ["center"] self._vert_align = ["middle"] + self._x_pos = [None] + self._y_pos = [None] self._fd = None self._bold = False self._italic = False @@ -172,7 +173,7 @@ class Sprite: self._margins = [0, 0, 0, 0] self.layer = 100 self.labels = [] - self.cached_surfaces = [] + self.images = [] self._dx = [] # image offsets self._dy = [] self.type = None @@ -181,54 +182,47 @@ class Sprite: def set_image(self, image, i=0, dx=0, dy=0): ''' Add an image to the sprite. ''' - while len(self.cached_surfaces) < i + 1: - self.cached_surfaces.append(None) + while len(self.images) < i + 1: + self.images.append(None) self._dx.append(0) self._dy.append(0) + self.images[i] = image self._dx[i] = dx self._dy[i] = dy - if isinstance(image, gtk.gdk.Pixbuf): - w = image.get_width() - h = image.get_height() + if hasattr(self.images[i], 'get_width'): + w = self.images[i].get_width() + h = self.images[i].get_height() else: - w, h = image.get_size() + w, h = self.images[i].get_size() if i == 0: # Always reset width and height when base image changes. - self.rect.width = w + dx - self.rect.height = h + dy + self.rect[2] = w + dx + self.rect[3] = h + dy else: - if w + dx > self.rect.width: - self.rect.width = w + dx - if h + dy > self.rect.height: - self.rect.height = h + dy - surface = cairo.ImageSurface( - cairo.FORMAT_ARGB32, self.rect.width, self.rect.height) - context = cairo.Context(surface) - context = gtk.gdk.CairoContext(context) - context.set_source_pixbuf(image, 0, 0) - context.rectangle(0, 0, self.rect.width, self.rect.height) - context.fill() - self.cached_surfaces[i] = surface + if w + dx > self.rect[2]: + self.rect[2] = w + dx + if h + dy > self.rect[3]: + self.rect[3] = h + dy def move(self, pos): ''' Move to new (x, y) position ''' self.inval() - self.rect.x, self.rect.y = int(pos[0]), int(pos[1]) + self.rect[0], self.rect[1] = int(pos[0]), int(pos[1]) self.inval() def move_relative(self, pos): ''' Move to new (x+dx, y+dy) position ''' self.inval() - self.rect.x += int(pos[0]) - self.rect.y += int(pos[1]) + self.rect[0] += int(pos[0]) + self.rect[1] += int(pos[1]) self.inval() def get_xy(self): ''' Return current (x, y) position ''' - return (self.rect.x, self.rect.y) + return (self.rect[0], self.rect[1]) def get_dimensions(self): ''' Return current size ''' - return (self.rect.width, self.rect.height) + return (self.rect[2], self.rect[3]) def get_layer(self): ''' Return current layer ''' @@ -246,7 +240,7 @@ class Sprite: if layer is not None: self.layer = layer for i in range(self._sprites.length_of_list()): - if layer < self._sprites.get_sprite(i).layer: + if self.layer < self._sprites.get_sprite(i).layer: self._sprites.insert_in_list(self, i) self.inval() return @@ -279,10 +273,12 @@ class Sprite: self._rescale.append(self._rescale[0]) self._horiz_align.append(self._horiz_align[0]) self._vert_align.append(self._vert_align[0]) + self._x_pos.append(self._x_pos[0]) + self._y_pos.append(self._y_pos[0]) def set_font(self, font): ''' Set the font for a label ''' - self._fd = pango.FontDescription(font) + self._fd = Pango.FontDescription(font) def set_label_color(self, rgb): ''' Set the font color for a label ''' @@ -300,13 +296,15 @@ class Sprite: return def set_label_attributes(self, scale, rescale=True, horiz_align="center", - vert_align="middle", i=0): + vert_align="middle", x_pos=None, y_pos=None, i=0): ''' Set the various label attributes ''' self._extend_labels_array(i) self._scale[i] = scale self._rescale[i] = rescale self._horiz_align[i] = horiz_align self._vert_align[i] = vert_align + self._x_pos[i] = x_pos + self._y_pos[i] = y_pos def hide(self): ''' Hide a sprite ''' @@ -319,136 +317,149 @@ class Sprite: def inval(self): ''' Invalidate a region for gtk ''' - self._sprites.widget.queue_draw_area(self.rect.x, - self.rect.y, - self.rect.width, - self.rect.height) + # self._sprites.window.invalidate_rect(self.rect, False) + self._sprites.widget.queue_draw_area(self.rect[0], + self.rect[1], + self.rect[2], + self.rect[3]) def draw(self, cr=None): ''' Draw the sprite (and label) ''' if cr is None: + cr = self._sprites.cr + if cr is None: print 'sprite.draw: no Cairo context.' return - for i, surface in enumerate(self.cached_surfaces): - cr.set_source_surface(surface, - self.rect.x + self._dx[i], - self.rect.y + self._dy[i]) - cr.rectangle(self.rect.x + self._dx[i], - self.rect.y + self._dy[i], - self.rect.width, - self.rect.height) - cr.fill() + for i, img in enumerate(self.images): + if isinstance(img, GdkPixbuf.Pixbuf): + Gdk.cairo_set_source_pixbuf(cr, img, + self.rect[0] + self._dx[i], + self.rect[1] + self._dy[i]) + cr.rectangle(self.rect[0] + self._dx[i], + self.rect[1] + self._dy[i], + self.rect[2], + self.rect[3]) + cr.fill() + elif type(img) == cairo.ImageSurface: + cr.set_source_surface(img, self.rect[0] + self._dx[i], + self.rect[1] + self._dy[i]) + cr.rectangle(self.rect[0] + self._dx[i], + self.rect[1] + self._dy[i], + self.rect[2], + self.rect[3]) + cr.fill() + else: + print 'sprite.draw: source not a pixbuf (%s)' % (type(img)) if len(self.labels) > 0: self.draw_label(cr) def hit(self, pos): ''' Is (x, y) on top of the sprite? ''' x, y = pos - if x < self.rect.x: + if x < self.rect[0]: return False - if x > self.rect.x + self.rect.width: + if x > self.rect[0] + self.rect[2]: return False - if y < self.rect.y: + if y < self.rect[1]: return False - if y > self.rect.y + self.rect.height: + if y > self.rect[1] + self.rect[3]: return False return True def draw_label(self, cr): ''' Draw the label based on its attributes ''' - # Create a pangocairo context - cr = pangocairo.CairoContext(cr) - my_width = self.rect.width - self._margins[0] - self._margins[2] + my_width = self.rect[2] - self._margins[0] - self._margins[2] if my_width < 0: my_width = 0 - my_height = self.rect.height - self._margins[1] - self._margins[3] + my_height = self.rect[3] - self._margins[1] - self._margins[3] for i in range(len(self.labels)): - pl = cr.create_layout() - pl.set_text(str(self.labels[i])) - self._fd.set_size(int(self._scale[i] * pango.SCALE)) + pl = PangoCairo.create_layout(cr) + pl.set_text(str(self.labels[i]), -1) + self._fd.set_size(int(self._scale[i] * Pango.SCALE)) pl.set_font_description(self._fd) - w = pl.get_size()[0] / pango.SCALE + w = pl.get_size()[0] / Pango.SCALE if w > my_width: if self._rescale[i]: self._fd.set_size( - int(self._scale[i] * pango.SCALE * my_width / w)) + int(self._scale[i] * Pango.SCALE * my_width / w)) pl.set_font_description(self._fd) - w = pl.get_size()[0] / pango.SCALE + w = pl.get_size()[0] / Pango.SCALE else: j = len(self.labels[i]) - 1 while(w > my_width and j > 0): pl.set_text( - "…" + self.labels[i][len(self.labels[i]) - j:]) - self._fd.set_size(int(self._scale[i] * pango.SCALE)) + "…" + self.labels[i][len(self.labels[i]) - j:], -1) + self._fd.set_size(int(self._scale[i] * Pango.SCALE)) pl.set_font_description(self._fd) - w = pl.get_size()[0] / pango.SCALE + w = pl.get_size()[0] / Pango.SCALE j -= 1 - if self._horiz_align[i] == "center": - x = int(self.rect.x + self._margins[0] + (my_width - w) / 2) + if self._x_pos[i] is not None: + x = int(self.rect[0] + self._x_pos[i]) + elif self._horiz_align[i] == "center": + x = int(self.rect[0] + self._margins[0] + (my_width - w) / 2) elif self._horiz_align[i] == 'left': - x = int(self.rect.x + self._margins[0]) + x = int(self.rect[0] + self._margins[0]) else: # right - x = int(self.rect.x + self.rect.width - w - self._margins[2]) - h = pl.get_size()[1] / pango.SCALE - if self._vert_align[i] == "middle": - y = int(self.rect.y + self._margins[1] + (my_height - h) / 2) + x = int(self.rect[0] + self.rect[2] - w - self._margins[2]) + h = pl.get_size()[1] / Pango.SCALE + if self._y_pos[i] is not None: + y = int(self.rect[1] + self._y_pos[i]) + elif self._vert_align[i] == "middle": + y = int(self.rect[1] + self._margins[1] + (my_height - h) / 2) elif self._vert_align[i] == "top": - y = int(self.rect.y + self._margins[1]) + y = int(self.rect[1] + self._margins[1]) else: # bottom - y = int(self.rect.y + self.rect.height - h - self._margins[3]) + y = int(self.rect[1] + self.rect[3] - h - self._margins[3]) cr.save() cr.translate(x, y) cr.set_source_rgb(self._color[0], self._color[1], self._color[2]) - cr.update_layout(pl) - cr.show_layout(pl) + PangoCairo.update_layout(cr, pl) + PangoCairo.show_layout(cr, pl) cr.restore() - def label_width(self): + def label_width(self, cr=None): ''' Calculate the width of a label ''' - cr = pangocairo.CairoContext(self._sprites.cr) - if cr is not None: - max = 0 - for i in range(len(self.labels)): - pl = cr.create_layout() - pl.set_text(self.labels[i]) - self._fd.set_size(int(self._scale[i] * pango.SCALE)) - pl.set_font_description(self._fd) - w = pl.get_size()[0] / pango.SCALE - if w > max: - max = w - return max - else: - return self.rect.width + if cr is None: + cr = self._sprites.cr + max = 0 + for i in range(len(self.labels)): + pl = PangoCairo.create_layout(cr) + pl.set_text(str(self.labels[i]), -1) + self._fd.set_size(int(self._scale[i] * Pango.SCALE)) + pl.set_font_description(self._fd) + w = pl.get_size()[0] / Pango.SCALE + if w > max: + max = w + return max def label_safe_width(self): ''' Return maximum width for a label ''' - return self.rect.width - self._margins[0] - self._margins[2] + return self.rect[2] - self._margins[0] - self._margins[2] def label_safe_height(self): ''' Return maximum height for a label ''' - return self.rect.height - self._margins[1] - self._margins[3] + return self.rect[3] - self._margins[1] - self._margins[3] def label_left_top(self): ''' Return the upper-left corner of the label safe zone ''' return(self._margins[0], self._margins[1]) def get_pixel(self, pos, i=0): - ''' Return the pixel at (x, y) ''' - x = int(pos[0] - self.rect.x) - y = int(pos[1] - self.rect.y) - if x < 0 or x > (self.rect.width - 1) or \ - y < 0 or y > (self.rect.height - 1): + ''' Return the pixl at (x, y) ''' + x, y = pos + x = x - self.rect[0] + y = y - self.rect[1] + if y > self.images[i].get_height() - 1: + return(-1, -1, -1, -1) + try: + array = self.images[i].get_pixels() + if array is not None: + offset = (y * self.images[i].get_width() + x) * 4 + r, g, b, a = ord(array[offset]), ord(array[offset + 1]),\ + ord(array[offset + 2]), ord(array[offset + 3]) + return(r, g, b, a) + else: + return(-1, -1, -1, -1) + except IndexError: + print "Index Error: %d %d" % (len(array), offset) return(-1, -1, -1, -1) - - # create a new 1x1 cairo surface - cs = cairo.ImageSurface(cairo.FORMAT_RGB24, 1, 1); - cr = cairo.Context(cs) - cr.set_source_surface(self.cached_surfaces[i], -x, -y) - cr.rectangle(0,0,1,1) - cr.set_operator(cairo.OPERATOR_SOURCE) - cr.fill() - cs.flush() # ensure all writing is done - # Read the pixel - pixels = cs.get_data() - return (ord(pixels[2]), ord(pixels[1]), ord(pixels[0]), 0) - diff --git a/tile.py b/tile.py index d100f6f..1eff8c8 100644 --- a/tile.py +++ b/tile.py @@ -1,5 +1,6 @@ #Copyright (c) 2011 Walter Bender - +# Port To GTK3: +# Ignacio Rodriguez # 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 3 of the License, or @@ -10,7 +11,7 @@ # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA -import gtk +from gi.repository import Gdk, Gtk from constants import NORTH, EAST, SOUTH, WEST, HIDE, TILES from sprites import Sprite from utils import svg_str_to_pixbuf diff --git a/toolbar_utils.py b/toolbar_utils.py index 94e6883..72f7100 100644 --- a/toolbar_utils.py +++ b/toolbar_utils.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # Copyright (c) 2011, Walter Bender - +# Port To GTK3: +# Ignacio Rodriguez # 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 3 of the License, or @@ -11,12 +12,12 @@ # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA -import gtk +from gi.repository import Gtk -from sugar.graphics.radiotoolbutton import RadioToolButton -from sugar.graphics.toolbutton import ToolButton -from sugar.graphics.combobox import ComboBox -from sugar.graphics.toolcombobox import ToolComboBox +from sugar3.graphics.radiotoolbutton import RadioToolButton +from sugar3.graphics.toolbutton import ToolButton +from sugar3.graphics.combobox import ComboBox +from sugar3.graphics.toolcombobox import ToolComboBox def combo_factory(combo_array, toolbar, callback, cb_arg=None, @@ -32,7 +33,7 @@ def combo_factory(combo_array, toolbar, callback, cb_arg=None, for i, selection in enumerate(combo_array): combo.append_item(i, selection, None) combo.show() - toolitem = gtk.ToolItem() + toolitem = Gtk.ToolItem() toolitem.add(combo) if hasattr(toolbar, 'insert'): # the main toolbar toolbar.insert(toolitem, -1) @@ -46,13 +47,13 @@ def combo_factory(combo_array, toolbar, callback, cb_arg=None, def entry_factory(default_string, toolbar, tooltip=None, max=3): ''' Factory for adding a text box to a toolbar ''' - entry = gtk.Entry() + entry = Gtk.Entry() entry.set_text(default_string) if tooltip is not None and hasattr(entry, 'set_tooltip_text'): entry.set_tooltip_text(tooltip) entry.set_width_chars(max) entry.show() - toolitem = gtk.ToolItem() + toolitem = Gtk.ToolItem() toolitem.add(entry) if hasattr(toolbar, 'insert'): # the main toolbar toolbar.insert(toolitem, -1) @@ -87,7 +88,7 @@ def radio_factory(name, toolbar, callback, cb_arg=None, tooltip=None, group=None): ''' Add a radio button to a toolbar ''' button = RadioToolButton(group=group) - button.set_named_icon(name) + button.set_icon_name(name) if callback is not None: if cb_arg is None: button.connect('clicked', callback) @@ -105,12 +106,12 @@ def radio_factory(name, toolbar, callback, cb_arg=None, tooltip=None, def label_factory(toolbar, label_text, width=None): ''' Factory for adding a label to a toolbar ''' - label = gtk.Label(label_text) + label = Gtk.Label(label_text) label.set_line_wrap(True) if width is not None: label.set_size_request(width, -1) # doesn't work on XOs label.show() - toolitem = gtk.ToolItem() + toolitem = Gtk.ToolItem() toolitem.add(label) if hasattr(toolbar, 'insert'): # the main toolbar toolbar.insert(toolitem, -1) @@ -122,7 +123,7 @@ def label_factory(toolbar, label_text, width=None): def separator_factory(toolbar, expand=False, visible=True): ''' add a separator to a toolbar ''' - separator = gtk.SeparatorToolItem() + separator = Gtk.SeparatorToolItem() separator.props.draw = visible separator.set_expand(expand) if hasattr(toolbar, 'insert'): # the main toolbar @@ -134,9 +135,9 @@ def separator_factory(toolbar, expand=False, visible=True): def image_factory(image, toolbar, tooltip=None): ''' Add an image to the toolbar ''' - img = gtk.Image() + img = Gtk.Image() img.set_from_pixbuf(image) - img_tool = gtk.ToolItem() + img_tool = Gtk.ToolItem() img_tool.add(img) if tooltip is not None: img.set_tooltip_text(tooltip) @@ -149,12 +150,12 @@ def image_factory(image, toolbar, tooltip=None): def spin_factory(default, min, max, callback, toolbar): - spin_adj = gtk.Adjustment(default, min, max, 1, 32, 0) - spin = gtk.SpinButton(spin_adj, 0, 0) + spin_adj = Gtk.Adjustment(default, min, max, 1, 32, 0) + spin = Gtk.SpinButton(spin_adj, 0, 0) spin_id = spin.connect('value-changed', callback) spin.set_numeric(True) spin.show() - toolitem = gtk.ToolItem() + toolitem = Gtk.ToolItem() toolitem.add(spin) if hasattr(toolbar, 'insert'): # the main toolbar toolbar.insert(toolitem, -1) diff --git a/utils.py b/utils.py index d2256b6..0f9fd16 100644 --- a/utils.py +++ b/utils.py @@ -10,7 +10,7 @@ # Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA -import gtk +from gi.repository import GdkPixbuf from StringIO import StringIO try: OLD_SUGAR_SYSTEM = False @@ -56,7 +56,7 @@ def json_dump(data): def svg_str_to_pixbuf(svg_string): ''' Load pixbuf from SVG string ''' - pl = gtk.gdk.PixbufLoader('svg') + pl = GdkPixbuf.PixbufLoader.new_with_type('svg') pl.write(svg_string) pl.close() pixbuf = pl.get_pixbuf() -- cgit v0.9.1