diff -Nru lernid-0.2/bin/lernid lernid-0.3/bin/lernid --- lernid-0.2/bin/lernid 2009-12-01 17:06:45.000000000 +0000 +++ lernid-0.3/bin/lernid 2009-12-10 17:00:28.000000000 +0000 @@ -25,6 +25,12 @@ import pynotify import gettext import gio +import vobject +import time +import datetime +import glib +import locale +import urlparse # Check if we are working in the source tree or from the installed # package and mangle the python path accordingly @@ -86,26 +92,41 @@ # set up views - self.schedule_scroll = self.builder.get_object("schedule_scroll") + self.browser_scroll = self.builder.get_object("browser_scroll") self.classroom_textview = self.builder.get_object("classroom_textview") self.classroom_scroll = self.builder.get_object("classroom_scroll") self.classroom_scrollbar = self.builder.get_object("adjustment1") self.chat_scroll = self.builder.get_object("chat_scroll") self.main_window = self.builder.get_object("lernid_window") + self.browser_combo = self.builder.get_object("browser_combo") + self.tabs = self.builder.get_object("tabs") + + # set up browser combo box + self.browser_liststore = gtk.ListStore(str, str) + self.browser_combo.set_model(self.browser_liststore) + title_cell = gtk.CellRendererText() + self.browser_combo.pack_start(title_cell, True) + self.browser_combo.add_attribute(title_cell, 'text', 0) + + # set tab page numbers + self.TAB_SCHEDULE = 0 + self.TAB_BROWSER = 1 + + # create browser widget + self.browser = gtkmozembed.MozEmbed() + self.browser.connect("title", self.update_browser_title_combo) - self.schedule = gtkmozembed.MozEmbed() - self.chat = gtkmozembed.MozEmbed() self.chat.set_flags(gtk.HAS_FOCUS) - self.schedule_scroll.add_with_viewport(self.schedule) + self.browser_scroll.add_with_viewport(self.browser) self.chat_scroll.add_with_viewport(self.chat) self.chat.grab_focus() self.main_window.show_all() - self.schedule.hide() + self.browser.hide() self.chat.hide() self.connect_dialog(None) @@ -115,8 +136,116 @@ filehandle = open(os.path.join(self.lernidfolder, "classroom_temp.txt"), "r") linelist = filehandle.readlines() filehandle.flush() + chatline = linelist[len(linelist)-1] + + # check for an URL + u = next((pr for pr in map(urlparse.urlparse, chatline.split()) if pr.scheme), None) + + if u is not None: + self.add_new_browser_page(u.geturl()) + self.classroom_textview.get_buffer().insert(self.classroom_textview.get_buffer().get_end_iter(), linelist[len(linelist)-1]) self.classroom_scrollbar.set_value(self.classroom_scrollbar.upper) + + def parse_schedule(self): + """Read the iCal schedule and generate a dictionary with the data""" + + f = open(os.path.join(self.lernidfolder_events, "schedule.ical"), "r") + cal = vobject.readOne(f) + + self.schedule = [] + tempevent = {} + + for ev in cal.vevent_list: + utc_start_ft = datetime.datetime.strptime(vobject.icalendar.dateTimeToString(ev.dtstart.value)[0:15], "%Y%m%dT%H%M%S") + utc_end_ft = datetime.datetime.strptime(vobject.icalendar.dateTimeToString(ev.dtend.value)[0:15], "%Y%m%dT%H%M%S") + local_start_datetime = time.localtime((int(time.mktime(time.strptime(str(utc_start_ft), '%Y-%m-%d %H:%M:%S'))) - time.timezone)) + local_end_datetime = time.localtime((int(time.mktime(time.strptime(str(utc_end_ft), '%Y-%m-%d %H:%M:%S'))) - time.timezone)) + + tempevent['start_local'] = time.strftime("%Y-%m-%d %H:%M:%S", local_start_datetime) + tempevent['end_local'] = time.strftime("%Y-%m-%d %H:%M:%S", local_end_datetime) + tempevent['title'] = ev.summary.value + tempevent['start_utc'] = str(datetime.datetime.strptime(vobject.icalendar.dateTimeToString(ev.dtstart.value)[0:15], "%Y%m%dT%H%M%S")) + tempevent['end_utc'] = str(datetime.datetime.strptime(vobject.icalendar.dateTimeToString(ev.dtend.value)[0:15], "%Y%m%dT%H%M%S")) + tempevent['start_epoch'] = int(time.mktime(time.strptime(str(utc_start_ft), '%Y-%m-%d %H:%M:%S'))) + tempevent['end_epoch'] = int(time.mktime(time.strptime(str(utc_end_ft), '%Y-%m-%d %H:%M:%S'))) + tempevent['start_local_epoch'] = int(time.mktime(local_start_datetime)) + tempevent['end_local_epoch'] = int(time.mktime(local_end_datetime)) + + + self.schedule.append(tempevent) + tempevent = {} + + # reverse the list to get the events in chronological order + self.schedule.sort(lambda x,y: cmp(x['start_local'], y['start_local'])) + + def populate_schedule_view(self): + """Populate the schedule Treeview with events""" + + self.parse_schedule() + + self.schedule_tv = self.builder.get_object("schedule_tv") + + self.schedule_model = gtk.ListStore(str, str, str, str) + self.schedule_tv.set_model(self.schedule_model) + + self.tvcolumn = gtk.TreeViewColumn(self.event + " Events") + self.cellpb = gtk.CellRendererPixbuf() + self.cell_date = gtk.CellRendererText() + self.cell_time = gtk.CellRendererText() + self.cell_title = gtk.CellRendererText() + + self.tvcolumn.pack_start(self.cellpb, False) + self.tvcolumn.pack_start(self.cell_date, True) + self.tvcolumn.pack_start(self.cell_time, True) + self.tvcolumn.pack_start(self.cell_title, True) + + self.tvcolumn.set_attributes(self.cellpb, stock_id=0) + self.tvcolumn.set_attributes(self.cell_date, text=1) + self.tvcolumn.set_attributes(self.cell_time, text=2) + self.tvcolumn.set_attributes(self.cell_title, text=3) + + self.schedule_tv.append_column(self.tvcolumn) + + self.temp_eventname = None + templist = [] + + for l in self.schedule: + # set up tree view + templist.append(gtk.STOCK_DND) + templist.append(l['start_local'][0:10]) + templist.append(l['start_local'][11:16] + " - " + l['end_local'][12:16]) + templist.append(l['title']) + self.schedule_model.append(templist) + + # add notification event + secs = 0 + remindermins = 10 + now_epoch = time.time() + reminder_epoch = remindermins * 60 + secs = ((l['start_local_epoch'] - now_epoch) - reminder_epoch) + + message = str(self.event) + ": " + str(l['title']) + "...starts in 10 minutes!" + + glib.timeout_add_seconds(int(secs), self.send_notification, str(message)) + + templist = [] + + def browser_refresh(self, widget): + """Refresh the browser view.""" + + self.browser.reload(gtkmozembed.FLAG_RELOADNORMAL) + + def browser_stop(self, widget): + """Stop the current page loading in the browser view.""" + + self.browser.stop_load() + + def send_notification(self, s): + """Send a message to notify-osd.""" + + n = pynotify.Notification(s) + n.show() def connect_dialog(self, widget): """Show the connect dialog and connect to the resources.""" @@ -163,27 +292,29 @@ def connect_to_resources(self): """Connect to the currently selected event.""" - self.builder.get_object("statusbar").set_text("Connected to " + self.event) - n = pynotify.Notification("Connected to " + self.event) - n.show() + self.builder.get_object("statusbar").set_text(_("Connected to ") + self.event) + self.send_notification(_("Connected to ") + self.event) config = ConfigParser.ConfigParser() config.read(os.path.join(self.lernidfolder_events, "config.lernid")) - scheduleurl = config.get(self.event, "scheduleurl") + homepage = config.get(self.event, "homepage") classroomirc = "http://webchat.freenode.net/?nick=lernidviewer_" + self.nick + "&channels=" + config.get(self.event, "classroom") chatirc = "http://webchat.freenode.net/?nick=" + self.nick + "&channels=" + config.get(self.event, "chat") + urllib.urlretrieve(config.get(self.event, "icalurl"), os.path.join(self.lernidfolder_events, "schedule.ical")) + self.irc = IrcBackend.Irc() self.irc.tp_connect("lernid_" + self.nick, "irc.freenode.net", config.get(self.event, "classroom")) - self.schedule.show() + self.browser.show() self.chat.show() self.main_window.show_all() - self.schedule.load_url(scheduleurl) + self.add_new_browser_page(homepage) self.chat.load_url(chatirc) + self.populate_schedule_view() def disconnect_from_resources(self, widget): """Disconnect from the currently selected event.""" @@ -191,16 +322,50 @@ logging.debug("Disconnecting from %s" % self.event) self.irc.disconnect() - n = pynotify.Notification("Disconnecting from " + self.event) - n.show() + self.send_notification(_("Disconnecting from ") + self.event) - self.schedule.hide() + self.browser.hide() self.chat.hide() - + def add_new_browser_page(self, url): + """Add a new page to the browser.""" + + match = 0 + + for i in self.browser_liststore: + if i[1] == url: + match = 1 + + if match == 0: + self.browser.load_url(url) + self.tabs.set_current_page(self.TAB_BROWSER) + + def update_browser_title_combo(self, widget): + """Update the browser title combo box with the new title.""" + + item = self.browser.get_title() + " (" + self.browser.get_location() + ")" + + match = 0 + + for i in self.browser_liststore: + if i[0] == item: + match = 1 + + if match == 0: + comboitem = [] + comboitem.append(item) + comboitem.append(self.browser.get_location()) + self.browser_liststore.append(comboitem) + self.browser_combo.set_active(len(self.browser_liststore)-1) + + def select_browser_title(self, widget): + """Select an item from the browser combo box.""" + + self.browser.load_url(self.browser_liststore[self.browser_combo.get_active()][1]) def about(self, widget, data=None): """about - display the about box for lernid """ + about = AboutLernidDialog.NewAboutLernidDialog() response = about.run() about.destroy() @@ -235,6 +400,8 @@ if not os.path.exists(ui_filename): ui_filename = None + # Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=574520 + locale.textdomain("lernid") builder = gtk.Builder() builder.add_from_file(ui_filename) window = builder.get_object("lernid_window") @@ -244,8 +411,9 @@ if __name__ == "__main__": #support for command line options import logging, optparse - parser = optparse.OptionParser(version="%prog %ver") - parser.add_option("-v", "--verbose", action="store_true", dest="verbose", help="Show debug messages") + gettext.install('lernid', unicode=True) + parser = optparse.OptionParser(version="%prog 0.3") + parser.add_option("-v", "--verbose", action="store_true", dest="verbose", help=_("Show debug messages")) (options, args) = parser.parse_args() #set the logging level to show debug messages @@ -253,8 +421,6 @@ logging.basicConfig(level=logging.DEBUG) logging.debug('logging enabled') - gettext.install('lernid', unicode=True) - #run the application window = NewLernidWindow() window.show() diff -Nru /tmp/jiJytGNdW2/lernid-0.2/data/ui/AboutLernidDialog.ui /tmp/LBVtcyjPx5/lernid-0.3/data/ui/AboutLernidDialog.ui --- lernid-0.2/data/ui/AboutLernidDialog.ui 2009-12-01 17:06:12.000000000 +0000 +++ lernid-0.3/data/ui/AboutLernidDialog.ui 2009-12-10 16:48:46.000000000 +0000 @@ -9,9 +9,9 @@ normal False Lernid - 0.2 + 0.3 Connect to a world of online tutorials quickly and easily. - http://www.launchpad/lernid/ + http://www.launchpad.net/lernid/ Copyright (C) 2009 <Jono Bacon> <jono@ubuntu.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3, as published by the Free Software Foundation. @@ -19,8 +19,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Jono Bacon <jono@ubuntu.com> -Andrew Higginson <rugby471@gmail.com> - David Planella <david.planella@ubuntu.com> +Lucian Adrian Grijincu <lucian.grijincu@gmail.com > +Andrew Higginson <rugby471@gmail.com> +David Planella <david.planella@ubuntu.com> + translator-credits True diff -Nru /tmp/jiJytGNdW2/lernid-0.2/data/ui/LernidWindow.ui /tmp/LBVtcyjPx5/lernid-0.3/data/ui/LernidWindow.ui --- lernid-0.2/data/ui/LernidWindow.ui 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/data/ui/LernidWindow.ui 2009-12-10 15:35:54.000000000 +0000 @@ -97,10 +97,9 @@ True vertical - + True - 0 - none + True True @@ -108,19 +107,115 @@ automatic automatic - + + True + True + - - + + True - 3 - 3 - <b>Schedule</b> - True - fill + Schedule + + + + + False + + + + + True + vertical + + + True + + + gtk-refresh + True + True + True + True + + + + False + False + 0 + + + + + gtk-stop + True + True + True + True + + + + False + False + 1 + + + + + True + + + + 2 + + + + + False + False + 0 + + + + + True + True + automatic + automatic + + + + + + 1 + + + + + 1 + + + + + True + Browser + + + + + + 1 + False + + + + + + + @@ -146,6 +241,7 @@ automatic + 250 True True 1 @@ -164,9 +260,11 @@ True 3 2 - <b>Classroom</b> - True + Classroom fill + + + @@ -202,9 +300,11 @@ True 3 3 - <b>Chatroom</b> - True + Chatroom fill + + + diff -Nru /tmp/jiJytGNdW2/lernid-0.2/data/ui/PreferencesLernidDialog.ui /tmp/LBVtcyjPx5/lernid-0.3/data/ui/PreferencesLernidDialog.ui --- lernid-0.2/data/ui/PreferencesLernidDialog.ui 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/data/ui/PreferencesLernidDialog.ui 2009-12-10 15:35:54.000000000 +0000 @@ -22,7 +22,7 @@ end - gtk-cancel + gtk-cancel True True True @@ -37,7 +37,7 @@ - gtk-ok + gtk-ok True True True diff -Nru /tmp/jiJytGNdW2/lernid-0.2/debian/changelog /tmp/LBVtcyjPx5/lernid-0.3/debian/changelog --- lernid-0.2/debian/changelog 2009-12-01 17:07:45.000000000 +0000 +++ lernid-0.3/debian/changelog 2009-12-10 16:56:57.000000000 +0000 @@ -1,3 +1,9 @@ +lernid (0.3) karmic; urgency=low + + * New release. + + -- Jono Bacon Thu, 10 Dec 2009 08:56:57 -0800 + lernid (0.2) karmic; urgency=low * New release. diff -Nru /tmp/jiJytGNdW2/lernid-0.2/debian/control /tmp/LBVtcyjPx5/lernid-0.3/debian/control --- lernid-0.2/debian/control 2009-12-01 17:07:44.000000000 +0000 +++ lernid-0.3/debian/control 2009-12-10 17:01:00.000000000 +0000 @@ -22,6 +22,7 @@ python-desktopcouch-records, python-gobject, python-notify, + python-vobject, python-gtk2 Description: Connect to Ubuntu learning events. Lernid provides an interface for joining in Ubuntu learning events such diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/ast.po /tmp/LBVtcyjPx5/lernid-0.3/po/ast.po --- lernid-0.2/po/ast.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/ast.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-12-01 00:37+0000\n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:40+0000\n" "Last-Translator: Xuacu \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Sala de charra" +msgid "Browser" +msgstr "Restolador" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Sala de Charres" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Sala de clase" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Non coneutáu." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Horariu" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "Soc_esu" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Aida" @@ -77,6 +81,10 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Aplicación Lernid" @@ -100,3 +108,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Coneutáu con " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Desconeutando de " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Amosar mensaxes de depuración" + +#~ msgid "Chat Room" +#~ msgstr "Sala de charra" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/ca.po /tmp/LBVtcyjPx5/lernid-0.3/po/ca.po --- lernid-0.2/po/ca.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/ca.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 09:44+0000\n" -"Last-Translator: David Planella \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-08 06:21+0000\n" +"Last-Translator: Jono Bacon \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-09 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Sala de xat" +msgid "Browser" +msgstr "Explorador" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Sala de xat" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Classe" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" -msgstr "" +msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "No connectat." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Horari" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Esdeveniment" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "A_juda" @@ -66,6 +70,10 @@ "with this program. If not, see ." msgstr "" +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Aplicació Lernid" @@ -89,3 +97,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Connectat a " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "S'està desconnectant de " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Mostra els missatges de depuració" + +#~ msgid "Chat Room" +#~ msgstr "Sala de xat" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/cs.po /tmp/LBVtcyjPx5/lernid-0.3/po/cs.po --- lernid-0.2/po/cs.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/cs.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 12:15+0000\n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:40+0000\n" "Last-Translator: Vojtěch Trefný \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Diskuzní místnost" +msgid "Browser" +msgstr "Prohlížeč" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Místnost" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Třída" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Nepřipojeno" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Rozvrh" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Událost" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Nápověda" @@ -76,6 +80,10 @@ "Kopii GNU General Public Licence jste měli obdržet spolu s tímto programem. " "Pokud ne, navštivte ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Aplikace Lernid" @@ -99,3 +107,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Připojeno k " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Odpojuji od " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Zobrazit ladící informace" + +#~ msgid "Chat Room" +#~ msgstr "Diskuzní místnost" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/da.po /tmp/LBVtcyjPx5/lernid-0.3/po/da.po --- lernid-0.2/po/da.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/da.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 17:48+0000\n" -"Last-Translator: Esben Damgaard \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 14:57+0000\n" +"Last-Translator: Martin Pihl \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Chatrum" +msgid "Browser" +msgstr "Browser" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Chatrum" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Klasseværelse" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Forbindelse ikke oprettet." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Køreplan" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Begivenhed" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Hjælp" @@ -64,10 +68,27 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." msgstr "" +"Copyright (C) 2009 \n" +"\n" +"Dette program er Fri Software: Du kan videre-distribuere det, og/eller ændre " +"i det under betingelserne i GNU General Public Licensen version 3 som " +"publiseret af Free Software Foundation.\n" +"\n" +"Dette program er distribueret i håbet om at det vil være brugbart - men UDEN " +"NOGEN GARANTI; uden de antydede garantier af salgbarhed, " +"tilfredshedsgaranti, eller at det passer til et specifikt formål. Se GNU " +"General Public licensen for flere detaljer.\n" +"\n" +"Du har modtaget en kopi af GNU General Public licensen med dette program. " +"Hvis ikke, se ." + +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " #: ../lernid.desktop.in.h:2 msgid "Lernid application" -msgstr "" +msgstr "Lernid-program" #: ../data/ui/ConnectDialog.ui.h:1 msgid "Choose an event" @@ -88,3 +109,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Forbundet til " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Afbryder forbindelse til " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Vis fejlretningsbeskeder" + +#~ msgid "Chat Room" +#~ msgstr "Chatrum" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/de.po /tmp/LBVtcyjPx5/lernid-0.3/po/de.po --- lernid-0.2/po/de.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/de.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,47 +7,52 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 12:15+0000\n" -"Last-Translator: Johannes Möller \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:36+0000\n" +"Last-Translator: Jono Bacon \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Chatraum" +msgid "Browser" +msgstr "Browser" #: ../data/ui/LernidWindow.ui.h:2 -msgid "Classroom" +msgid "Chatroom" msgstr "" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:3 +msgid "Classroom" +msgstr "Klassenraum" + +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Nicht verbunden" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" -msgstr "" +msgstr "Zeitplan" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Veranstaltung" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Hilfe" #: ../data/ui/AboutLernidDialog.ui.h:1 msgid "Connect to a world of online tutorials quickly and easily." msgstr "" +"Einfach und schnell mit einer Vielzahl von Online-Anleitungen verbinden." #: ../data/ui/AboutLernidDialog.ui.h:2 msgid "" @@ -78,9 +83,13 @@ "Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem " "Programm erhalten haben. Falls nicht, siehe ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" -msgstr "" +msgstr "Lernid Anwendung" #: ../data/ui/ConnectDialog.ui.h:1 msgid "Choose an event" @@ -96,8 +105,23 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:1 msgid "gtk-cancel" -msgstr "" +msgstr "gtk-cancel" #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" -msgstr "" +msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Verbunden mit " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Verbindung trennen mit " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Debug-Meldungen anzeigen" + +#~ msgid "Chat Room" +#~ msgstr "Chatraum" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/en_AU.po /tmp/LBVtcyjPx5/lernid-0.3/po/en_AU.po --- lernid-0.2/po/en_AU.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/en_AU.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,29 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-26 12:10+0100\n" -"PO-Revision-Date: 2009-11-27 07:31+0000\n" -"Last-Translator: Colin Dean \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:39+0000\n" +"Last-Translator: Steve Garton \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-28 05:03+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../data/ui/LernidWindow.ui.h:1 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:1 +msgid "Browser" +msgstr "Browser" + +#: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Chatroom" + +#: ../data/ui/LernidWindow.ui.h:3 +msgid "Classroom" +msgstr "Classroom" + +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:2 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Not Connected." -#: ../data/ui/LernidWindow.ui.h:3 +#: ../data/ui/LernidWindow.ui.h:6 +msgid "Schedule" +msgstr "Schedule" + +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Event" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Help" @@ -65,6 +81,10 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Lernid application" @@ -88,3 +108,15 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Connected to " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Disconnecting from " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Show debug messages" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/en_CA.po /tmp/LBVtcyjPx5/lernid-0.3/po/en_CA.po --- lernid-0.2/po/en_CA.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/en_CA.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,29 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-26 12:10+0100\n" -"PO-Revision-Date: 2009-11-27 08:09+0000\n" -"Last-Translator: Colin Dean \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:40+0000\n" +"Last-Translator: Steve Garton \n" "Language-Team: English (Canada) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-28 05:03+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../data/ui/LernidWindow.ui.h:1 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:1 +msgid "Browser" +msgstr "Browser" + +#: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Chatroom" + +#: ../data/ui/LernidWindow.ui.h:3 +msgid "Classroom" +msgstr "Classroom" + +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:2 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Not Connected." -#: ../data/ui/LernidWindow.ui.h:3 +#: ../data/ui/LernidWindow.ui.h:6 +msgid "Schedule" +msgstr "Schedule" + +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Event" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Help" @@ -65,6 +81,10 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Lernid application" @@ -88,3 +108,15 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Connected to " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Disconnecting from " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Show debug messages" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/en_GB.po /tmp/LBVtcyjPx5/lernid-0.3/po/en_GB.po --- lernid-0.2/po/en_GB.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/en_GB.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 08:28+0000\n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-08 06:17+0000\n" "Last-Translator: Jono Bacon \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-09 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Chat Room" +msgid "Browser" +msgstr "Browser" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Chatroom" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Classroom" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Not Connected." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Schedule" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Event" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Help" @@ -77,6 +81,10 @@ "You should have received a copy of the GNU General Public Licence along " "with this program. If not, see ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Lernid application" @@ -100,3 +108,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Connected to " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Disconnecting from " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Show debug messages" + +#~ msgid "Chat Room" +#~ msgstr "Chat Room" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/eo.po /tmp/LBVtcyjPx5/lernid-0.3/po/eo.po --- lernid-0.2/po/eo.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/eo.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,43 +7,47 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 14:35+0000\n" -"Last-Translator: Espera \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-07 06:02+0000\n" +"Last-Translator: Colin Dean \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-08 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Retbabilejo" +msgid "Browser" +msgstr "" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Klasĉambro" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" -msgstr "Lernid" +msgstr "Lernido" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Nekonektita" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Plano" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Evento" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" -msgstr "helpu" +msgstr "_Helpo" #: ../data/ui/AboutLernidDialog.ui.h:1 msgid "Connect to a world of online tutorials quickly and easily." @@ -77,6 +81,10 @@ "Vi devus ricevitan kopion de la GNU Publiko Licenco kune kun ĉi tiu " "programo. Se ne, legu ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Lernid-a aplikaĵo" @@ -87,7 +95,7 @@ #: ../data/ui/ConnectDialog.ui.h:2 msgid "Event" -msgstr "okazo" +msgstr "Evento" #: ../data/ui/ConnectDialog.ui.h:3 msgid "Nickname" @@ -100,3 +108,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Konektita al " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Malkonektanta el " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Montru sencimigantajn mesaĝojn" + +#~ msgid "Chat Room" +#~ msgstr "Retbabilejo" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/es.po /tmp/LBVtcyjPx5/lernid-0.3/po/es.po --- lernid-0.2/po/es.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/es.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,43 +7,47 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 21:34+0000\n" -"Last-Translator: Jose Ernesto Davila \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:38+0000\n" +"Last-Translator: Kamus \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Salón de Charla" +msgid "Browser" +msgstr "" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Sala de Chat" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" -msgstr "Aula" +msgstr "Salón de clases" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "No conectado." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Horario" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Evento" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" -msgstr "Ay_uda" +msgstr "_Ayuda" #: ../data/ui/AboutLernidDialog.ui.h:1 msgid "Connect to a world of online tutorials quickly and easily." @@ -65,17 +69,21 @@ "with this program. If not, see ." msgstr "" "Copyright (C) 2009 \n" -"This program is free software: you can redistribute it and/or modify it " -"under the terms of the GNU General Public License version 3, as published by " -"the Free Software Foundation.\n" +"Este programa es libre: puedes distribuirlo y/o modificarlo bajo los " +"términos de la licencia GNU General Public version 3, como fue publicado por " +"la Free Software Foundation.\n" "\n" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " -"SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " -"General Public License for more details.\n" +"Este programa es distruibuido con la esperanza que será útil, pero SIN " +"NINGUNA GARANTIA; sin siquiera la garantía implícita \n" +"de comerciabilidad, calidad de satisfacción, o apto para un propósito en " +"particular. Vea la licencia GNU General para obtener más detalles.\n" "\n" -"You should have received a copy of the GNU General Public License along " -"with this program. If not, see ." +"Debería haber recibido una copia de la licencia GNU General Public junto con " +"este programa. De lo contrario, vea ." + +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " #: ../lernid.desktop.in.h:2 msgid "Lernid application" @@ -100,3 +108,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Conectado a " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Desconectando de " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Mostrar mensajes de depuración" + +#~ msgid "Chat Room" +#~ msgstr "Salón de Charla" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/fi.po /tmp/LBVtcyjPx5/lernid-0.3/po/fi.po --- lernid-0.2/po/fi.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/fi.po 2009-12-10 15:35:54.000000000 +0000 @@ -8,13 +8,13 @@ "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 11:45+0000\n" -"Last-Translator: Miia Ranta \n" +"PO-Revision-Date: 2009-12-01 05:52+0000\n" +"Last-Translator: Jono Bacon \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-02 04:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/fr.po /tmp/LBVtcyjPx5/lernid-0.3/po/fr.po --- lernid-0.2/po/fr.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/fr.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 12:06+0000\n" -"Last-Translator: Pierre Slamich \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-08 06:11+0000\n" +"Last-Translator: Jono Bacon \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-09 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Salon de discussion" +msgid "Browser" +msgstr "Navigateur" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Salle de discussion" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Salle de classe" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Non connecté." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Planning" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Événement" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Aide" @@ -78,6 +82,10 @@ "Un exemplaire de la Licence Publique Générale GNU doit être fourni avec ce " "programme. Si ce n'est pas le cas, consultez ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "L'application Lernid" @@ -101,3 +109,27 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Connecté à " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Déconnexion de " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Afficher les messages de débogage" + +#~ msgid "Chat Room" +#~ msgstr "Salon de discussion" + +#~ msgid "Resources" +#~ msgstr "Ressources" + +#~ msgid "Classroom" +#~ msgstr "Salle de classe" + +#~ msgid "Schedule" +#~ msgstr "Programme" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/he.po /tmp/LBVtcyjPx5/lernid-0.3/po/he.po --- lernid-0.2/po/he.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/he.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 05:00+0000\n" -"Last-Translator: Ilan \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:39+0000\n" +"Last-Translator: Jono Bacon \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "" +msgid "Browser" +msgstr "דפדפן" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "חדר צ'אט" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" -msgstr "" +msgstr "כיתה" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "לרניד" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "לא מחובר" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" -msgstr "" +msgstr "לוח זמנים" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_אירוע" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_עזרה" @@ -64,6 +68,18 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." msgstr "" +"כל הזכויות שמורות (C) ל ." + +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " #: ../lernid.desktop.in.h:2 msgid "Lernid application" @@ -75,7 +91,7 @@ #: ../data/ui/ConnectDialog.ui.h:2 msgid "Event" -msgstr "" +msgstr "אירוע" #: ../data/ui/ConnectDialog.ui.h:3 msgid "Nickname" @@ -88,3 +104,15 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "התחבר ל־ " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "התנתק מ־ " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "הצג הודעות ניפוי שגיאות" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/hu.po /tmp/LBVtcyjPx5/lernid-0.3/po/hu.po --- lernid-0.2/po/hu.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/hu.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 11:34+0000\n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:38+0000\n" "Last-Translator: Richard Somlói \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Csevegőszoba" +msgid "Browser" +msgstr "Böngésző" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Csevegőszoba" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Tanterem" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Nincs csatlakoztatva." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Napirend" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Esemény" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Súgó" @@ -77,13 +81,17 @@ "A programhoz a GNU General Public License egy példánya is jár, ha nem kapta " "meg, itt elolvashatja: ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Lernid alkalmazás" #: ../data/ui/ConnectDialog.ui.h:1 msgid "Choose an event" -msgstr "Válasszon egy eseményt" +msgstr "Eseményválasztás" #: ../data/ui/ConnectDialog.ui.h:2 msgid "Event" @@ -100,3 +108,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Kapcsolódva: " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Kapcsolat bontva: " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Debug üzenetek mutatása" + +#~ msgid "Chat Room" +#~ msgstr "Csevegőszoba" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/id.po /tmp/LBVtcyjPx5/lernid-0.3/po/id.po --- lernid-0.2/po/id.po 1970-01-01 01:00:00.000000000 +0100 +++ lernid-0.3/po/id.po 2009-12-10 15:35:54.000000000 +0000 @@ -0,0 +1,110 @@ +# Indonesian translation for lernid +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the lernid package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: lernid\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-06 14:35+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Indonesian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-12-07 04:45+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#: ../data/ui/LernidWindow.ui.h:1 +msgid "Browser" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:3 +msgid "Classroom" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 +msgid "Lernid" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:5 +msgid "Not Connected." +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:6 +msgid "Schedule" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:7 +msgid "_Event" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:8 +msgid "_Help" +msgstr "" + +#: ../data/ui/AboutLernidDialog.ui.h:1 +msgid "Connect to a world of online tutorials quickly and easily." +msgstr "" + +#: ../data/ui/AboutLernidDialog.ui.h:2 +msgid "" +"Copyright (C) 2009 \n" +"This program is free software: you can redistribute it and/or modify it " +"under the terms of the GNU General Public License version 3, as published by " +"the Free Software Foundation.\n" +"\n" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " +"SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " +"General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License along " +"with this program. If not, see ." +msgstr "" + +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "" + +#: ../lernid.desktop.in.h:2 +msgid "Lernid application" +msgstr "" + +#: ../data/ui/ConnectDialog.ui.h:1 +msgid "Choose an event" +msgstr "" + +#: ../data/ui/ConnectDialog.ui.h:2 +msgid "Event" +msgstr "" + +#: ../data/ui/ConnectDialog.ui.h:3 +msgid "Nickname" +msgstr "" + +#: ../data/ui/PreferencesLernidDialog.ui.h:1 +msgid "gtk-cancel" +msgstr "" + +#: ../data/ui/PreferencesLernidDialog.ui.h:2 +msgid "gtk-ok" +msgstr "" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "" + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "" + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/it.po /tmp/LBVtcyjPx5/lernid-0.3/po/it.po --- lernid-0.2/po/it.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/it.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 13:00+0000\n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 12:26+0000\n" "Last-Translator: Paolo Sammicheli \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Stanza" +msgid "Browser" +msgstr "Browser web" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Area discussioni" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" -msgstr "Aula" +msgstr "Area lezioni" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Non connesso." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" -msgstr "Programma" +msgstr "Pianificazione" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Evento" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Aiuto" @@ -78,6 +82,10 @@ "legale. Consultate l'originale in Inglese all'indirizzo " "." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "Paolo Sammicheli " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Applicazione Lernid" @@ -96,8 +104,23 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:1 msgid "gtk-cancel" -msgstr "Annulla" +msgstr "" #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" -msgstr "Ok" +msgstr "" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Connesso a " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Disconnessione da " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Mostra i messaggi di debug" + +#~ msgid "Chat Room" +#~ msgstr "Stanza" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/jbo.po /tmp/LBVtcyjPx5/lernid-0.3/po/jbo.po --- lernid-0.2/po/jbo.po 1970-01-01 01:00:00.000000000 +0100 +++ lernid-0.3/po/jbo.po 2009-12-10 15:35:54.000000000 +0000 @@ -0,0 +1,90 @@ +# Lojban translation for lernid +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the lernid package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: lernid\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-11-29 21:33-0800\n" +"PO-Revision-Date: 2009-12-02 06:02+0000\n" +"Last-Translator: David Futcher \n" +"Language-Team: Lojban \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-12-05 04:47+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#: ../data/ui/LernidWindow.ui.h:1 +msgid "Chat Room" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:2 +msgid "Classroom" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +msgid "Lernid" +msgstr "la lernyd." + +#: ../data/ui/LernidWindow.ui.h:4 +msgid "Not Connected." +msgstr "na jongau" + +#: ../data/ui/LernidWindow.ui.h:5 +msgid "Schedule" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:6 +msgid "_Event" +msgstr "fasnu" + +#: ../data/ui/LernidWindow.ui.h:7 +msgid "_Help" +msgstr "sidju" + +#: ../data/ui/AboutLernidDialog.ui.h:1 +msgid "Connect to a world of online tutorials quickly and easily." +msgstr "" + +#: ../data/ui/AboutLernidDialog.ui.h:2 +msgid "" +"Copyright (C) 2009 \n" +"This program is free software: you can redistribute it and/or modify it " +"under the terms of the GNU General Public License version 3, as published by " +"the Free Software Foundation.\n" +"\n" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " +"SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " +"General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License along " +"with this program. If not, see ." +msgstr "" + +#: ../lernid.desktop.in.h:2 +msgid "Lernid application" +msgstr "la lernyd. samtci" + +#: ../data/ui/ConnectDialog.ui.h:1 +msgid "Choose an event" +msgstr "" + +#: ../data/ui/ConnectDialog.ui.h:2 +msgid "Event" +msgstr "fasnu" + +#: ../data/ui/ConnectDialog.ui.h:3 +msgid "Nickname" +msgstr "pe'ocme" + +#: ../data/ui/PreferencesLernidDialog.ui.h:1 +msgid "gtk-cancel" +msgstr "" + +#: ../data/ui/PreferencesLernidDialog.ui.h:2 +msgid "gtk-ok" +msgstr "" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/lernid.pot /tmp/LBVtcyjPx5/lernid-0.3/po/lernid.pot --- lernid-0.2/po/lernid.pot 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/lernid.pot 2009-12-10 16:57:04.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" +"POT-Creation-Date: 2009-12-10 08:57-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,30 +17,34 @@ "Content-Transfer-Encoding: 8bit\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" +msgid "Browser" msgstr "" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "" @@ -64,6 +68,10 @@ "with this program. If not, see ." msgstr "" +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "translator-credits" +msgstr "" + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "" @@ -80,10 +88,14 @@ msgid "Nickname" msgstr "" -#: ../data/ui/PreferencesLernidDialog.ui.h:1 -msgid "gtk-cancel" +#: ../bin/lernid.py:295 ../bin/lernid.py:296 +msgid "Connected to " +msgstr "" + +#: ../bin/lernid.py:325 +msgid "Disconnecting from " msgstr "" -#: ../data/ui/PreferencesLernidDialog.ui.h:2 -msgid "gtk-ok" +#: ../bin/lernid.py:416 +msgid "Show debug messages" msgstr "" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/nl.po /tmp/LBVtcyjPx5/lernid-0.3/po/nl.po --- lernid-0.2/po/nl.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/nl.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,47 +7,51 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 14:57+0000\n" -"Last-Translator: MarniX \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-09 05:39+0000\n" +"Last-Translator: cumulus007 \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-10 04:38+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Chatruimte" +msgid "Browser" +msgstr "Browser" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Chatruimte" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Klaslokaal" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Niet verbonden." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" -msgstr "Rooster" +msgstr "Planning" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" -msgstr "_Event" +msgstr "_Evenement" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Help" #: ../data/ui/AboutLernidDialog.ui.h:1 msgid "Connect to a world of online tutorials quickly and easily." -msgstr "Verbind snel en makkelijk met een wereld van online colleges." +msgstr "Gemakkelijk en snel verbinden met een wereld van online colleges." #: ../data/ui/AboutLernidDialog.ui.h:2 msgid "" @@ -65,9 +69,13 @@ "with this program. If not, see ." msgstr "" +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" -msgstr "Lernid applicatie" +msgstr "Lernid-toepassing" #: ../data/ui/ConnectDialog.ui.h:1 msgid "Choose an event" @@ -83,8 +91,23 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:1 msgid "gtk-cancel" -msgstr "" +msgstr "gtk-cancel" #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" -msgstr "" +msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Verbonden met " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Verbinding verbreken met " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Debug-berichten tonen" + +#~ msgid "Chat Room" +#~ msgstr "Chatruimte" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/pl.po /tmp/LBVtcyjPx5/lernid-0.3/po/pl.po --- lernid-0.2/po/pl.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/pl.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 11:27+0000\n" -"Last-Translator: Łukasz Jernaś \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-07 06:01+0000\n" +"Last-Translator: mmiicc \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-08 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Pokój rozmów" +msgid "Browser" +msgstr "Przeglądarka" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Pokój rozmów" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Klasa" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Rozłączony." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Planowanie" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Wydarzenie" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Pomoc" @@ -79,6 +83,10 @@ "Powszechnej Licencji Publicznej GNU (GNU General Public License); jeśli nie -" " proszę odwiedzić stronę ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Program Lernid" @@ -102,3 +110,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Połączony z " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Rozłączanie z " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Wyświetlaj komunikaty debugujące" + +#~ msgid "Chat Room" +#~ msgstr "Pokój rozmów" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/pt_BR.po /tmp/LBVtcyjPx5/lernid-0.3/po/pt_BR.po --- lernid-0.2/po/pt_BR.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/pt_BR.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 13:49+0000\n" -"Last-Translator: Allan Lopes \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-08 06:19+0000\n" +"Last-Translator: Daniel Tiecher \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-09 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Sala de Bate-Papo" +msgid "Browser" +msgstr "Navegador" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Sala de Bate-papo" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Sala de aula" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Desconectado" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Agenda" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Evento" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Ajuda" @@ -77,6 +81,10 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Aplicação Lernid" @@ -100,3 +108,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Conectado a " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Desconectado de " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Mostrar as mensagens de depuração" + +#~ msgid "Chat Room" +#~ msgstr "Sala de Bate-Papo" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/ro.po /tmp/LBVtcyjPx5/lernid-0.3/po/ro.po --- lernid-0.2/po/ro.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/ro.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,47 +7,51 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 12:40+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-07 06:02+0000\n" +"Last-Translator: Lucian Adrian Grijincu \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-08 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "" +msgid "Browser" +msgstr "Navigator" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Cameră de discuții" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" -msgstr "" +msgstr "Sală de clasă" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" -msgstr "" +msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." -msgstr "" +msgstr "Neconectat" -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" -msgstr "" +msgstr "Orar" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" -msgstr "" +msgstr "_Eveniment" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" -msgstr "" +msgstr "_Ajutor" #: ../data/ui/AboutLernidDialog.ui.h:1 msgid "Connect to a world of online tutorials quickly and easily." -msgstr "" +msgstr "Conectați-vă ușor și rapid la o lume online de tutoriale." #: ../data/ui/AboutLernidDialog.ui.h:2 msgid "" @@ -64,27 +68,54 @@ "You should have received a copy of the GNU General Public License along " "with this program. If not, see ." msgstr "" +"Copyright (C) 2009 \n" +"Acest program este liber; îl puteți redistribui și/sau modifica în " +"conformitate cu termenii Licenței Publice Generale GNU, așa cum este " +"publicată de către Free Software Foundation; fie versiunea 3 a Licenței, fie " +"(la latitudinea dumneavoastră) orice versiune ulterioară.\n" +"Acest program este distribuit cu speranța că va fi util, dar FĂRĂ NICI O " +"GARANȚIE; fără macar garanția implicită de\n" +"VÂNDABILITATE sau CONFORMITATE UNUI ANUMIT SCOP. A se vedea Licența Publică " +"Generală GNU pentru detalii.\n" +"Ar trebui să fi primit o copie a Licenței Publice Generale GNU împreună cu " +"acest program. În caz contrar, consultați ." + +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " #: ../lernid.desktop.in.h:2 msgid "Lernid application" -msgstr "" +msgstr "Aplicația Lernid" #: ../data/ui/ConnectDialog.ui.h:1 msgid "Choose an event" -msgstr "" +msgstr "Alegeți un eveniment" #: ../data/ui/ConnectDialog.ui.h:2 msgid "Event" -msgstr "" +msgstr "Eveniment" #: ../data/ui/ConnectDialog.ui.h:3 msgid "Nickname" -msgstr "" +msgstr "Pseudonim" #: ../data/ui/PreferencesLernidDialog.ui.h:1 msgid "gtk-cancel" -msgstr "" +msgstr "gtk-cancel" #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" -msgstr "" +msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Conectat la " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Se deconectează de la " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Afișează mesajele de depanare" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/ru.po /tmp/LBVtcyjPx5/lernid-0.3/po/ru.po --- lernid-0.2/po/ru.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/ru.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 13:38+0000\n" -"Last-Translator: Ilya Barygin \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-07 06:03+0000\n" +"Last-Translator: Vadim Peretokin \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-08 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Комната чата" +msgid "Browser" +msgstr "" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Классная комната" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Соединение отсутствует." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Расписание" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "_Событие" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "С_правка" @@ -78,6 +82,10 @@ "Вы должны были получить копию лицензии GNU General Public License c этой " "программой. Если это не так, смотрите ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" msgstr "Приложение Lernid" @@ -101,3 +109,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "gtk-ok" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Соединено с " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Отключаемся от " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Окно сообщений отладки" + +#~ msgid "Chat Room" +#~ msgstr "Комната чата" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/sl.po /tmp/LBVtcyjPx5/lernid-0.3/po/sl.po --- lernid-0.2/po/sl.po 1970-01-01 01:00:00.000000000 +0100 +++ lernid-0.3/po/sl.po 2009-12-10 15:35:54.000000000 +0000 @@ -0,0 +1,124 @@ +# Slovenian translation for lernid +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# This file is distributed under the same license as the lernid package. +# FIRST AUTHOR , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: lernid\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-08 06:09+0000\n" +"Last-Translator: Jono Bacon \n" +"Language-Team: Slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2009-12-09 04:36+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#: ../data/ui/LernidWindow.ui.h:1 +msgid "Browser" +msgstr "Brskalnik" + +#: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Klepetalnica" + +#: ../data/ui/LernidWindow.ui.h:3 +msgid "Classroom" +msgstr "Učilnica" + +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 +msgid "Lernid" +msgstr "Lernid" + +#: ../data/ui/LernidWindow.ui.h:5 +msgid "Not Connected." +msgstr "Brez povezave" + +#: ../data/ui/LernidWindow.ui.h:6 +msgid "Schedule" +msgstr "Razpored" + +#: ../data/ui/LernidWindow.ui.h:7 +msgid "_Event" +msgstr "_Dogodek" + +#: ../data/ui/LernidWindow.ui.h:8 +msgid "_Help" +msgstr "_Pomoč" + +#: ../data/ui/AboutLernidDialog.ui.h:1 +msgid "Connect to a world of online tutorials quickly and easily." +msgstr "Poveži se z navodili hitro in enostavno." + +#: ../data/ui/AboutLernidDialog.ui.h:2 +msgid "" +"Copyright (C) 2009 \n" +"This program is free software: you can redistribute it and/or modify it " +"under the terms of the GNU General Public License version 3, as published by " +"the Free Software Foundation.\n" +"\n" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, " +"SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU " +"General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License along " +"with this program. If not, see ." +msgstr "" +"Copyright (C) 2009 \n" +"Ta program je svoboden program: lahko ga posredujete in/ali spreminjate pod " +"pogoji licence GNU General Public Licence različica 3, kot je objavljeno s " +"strani Free Software Fondation.\n" +"\n" +"Ta program je posredovan v upanju, da bo koristen, vendar brez vsakega " +"jamstva, brez jamstva za prodajo, zadovoljive kakovosti, ali primernosti za " +"določen namen. Glej GNU General Public License za več podrobnosti.\n" +"\n" +"Programu bi morala biti priložena licenčna kopija GNU General Public " +"License. Če ni, glejte ." + +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + +#: ../lernid.desktop.in.h:2 +msgid "Lernid application" +msgstr "Program Lernid" + +#: ../data/ui/ConnectDialog.ui.h:1 +msgid "Choose an event" +msgstr "Izberi dogodek" + +#: ../data/ui/ConnectDialog.ui.h:2 +msgid "Event" +msgstr "Dogodek" + +#: ../data/ui/ConnectDialog.ui.h:3 +msgid "Nickname" +msgstr "Vzdevek" + +#: ../data/ui/PreferencesLernidDialog.ui.h:1 +msgid "gtk-cancel" +msgstr "gtk-prekliči" + +#: ../data/ui/PreferencesLernidDialog.ui.h:2 +msgid "gtk-ok" +msgstr "gtk-v-redu" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Prijavi v " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Odjavi od " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Prikaži razhroščevalna sporočila" + +#~ msgid "Chat Room" +#~ msgstr "Klepetelnica" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/sv.po /tmp/LBVtcyjPx5/lernid-0.3/po/sv.po --- lernid-0.2/po/sv.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/sv.po 2009-12-10 15:35:54.000000000 +0000 @@ -7,41 +7,45 @@ msgstr "" "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 12:36+0000\n" -"Last-Translator: Daniel Nylander \n" +"POT-Creation-Date: 2009-12-06 12:39-0800\n" +"PO-Revision-Date: 2009-12-08 06:21+0000\n" +"Last-Translator: Anders Pamdal \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-09 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 -msgid "Chat Room" -msgstr "Chattrum" +msgid "Browser" +msgstr "Webbläsare" #: ../data/ui/LernidWindow.ui.h:2 +msgid "Chatroom" +msgstr "Chattrum" + +#: ../data/ui/LernidWindow.ui.h:3 msgid "Classroom" msgstr "Klassrum" -#: ../data/ui/LernidWindow.ui.h:3 ../lernid.desktop.in.h:1 +#: ../data/ui/LernidWindow.ui.h:4 ../lernid.desktop.in.h:1 msgid "Lernid" msgstr "Lernid" -#: ../data/ui/LernidWindow.ui.h:4 +#: ../data/ui/LernidWindow.ui.h:5 msgid "Not Connected." msgstr "Inte ansluten." -#: ../data/ui/LernidWindow.ui.h:5 +#: ../data/ui/LernidWindow.ui.h:6 msgid "Schedule" msgstr "Schema" -#: ../data/ui/LernidWindow.ui.h:6 +#: ../data/ui/LernidWindow.ui.h:7 msgid "_Event" msgstr "Hä_ndelse" -#: ../data/ui/LernidWindow.ui.h:7 +#: ../data/ui/LernidWindow.ui.h:8 msgid "_Help" msgstr "_Hjälp" @@ -79,9 +83,13 @@ "Du bör ha fått en kopia av GNU General Public License tillsammans med detta " "program. Om inte, se ." +#: ../data/ui/AboutLernidDialog.ui.h:8 +msgid "David Planella " +msgstr "David Planella " + #: ../lernid.desktop.in.h:2 msgid "Lernid application" -msgstr "" +msgstr "Lernid-tillämpning" #: ../data/ui/ConnectDialog.ui.h:1 msgid "Choose an event" @@ -102,3 +110,18 @@ #: ../data/ui/PreferencesLernidDialog.ui.h:2 msgid "gtk-ok" msgstr "OK" + +#: ../bin/lernid.py:286 ../bin/lernid.py:287 +msgid "Connected to " +msgstr "Ansluten till " + +#: ../bin/lernid.py:316 +msgid "Disconnecting from " +msgstr "Kopplar från " + +#: ../bin/lernid.py:407 +msgid "Show debug messages" +msgstr "Visa felsökningsmeddelanden" + +#~ msgid "Chat Room" +#~ msgstr "Chattrum" diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/te.po /tmp/LBVtcyjPx5/lernid-0.3/po/te.po --- lernid-0.2/po/te.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/te.po 2009-12-10 15:35:54.000000000 +0000 @@ -8,13 +8,13 @@ "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 11:48+0000\n" -"Last-Translator: వీవెన్ (Veeven) \n" +"PO-Revision-Date: 2009-12-01 05:57+0000\n" +"Last-Translator: Jono Bacon \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-02 04:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 diff -Nru /tmp/jiJytGNdW2/lernid-0.2/po/zh_CN.po /tmp/LBVtcyjPx5/lernid-0.3/po/zh_CN.po --- lernid-0.2/po/zh_CN.po 2009-12-01 17:01:47.000000000 +0000 +++ lernid-0.3/po/zh_CN.po 2009-12-10 15:35:54.000000000 +0000 @@ -8,13 +8,13 @@ "Project-Id-Version: lernid\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-11-29 21:33-0800\n" -"PO-Revision-Date: 2009-11-30 15:09+0000\n" +"PO-Revision-Date: 2009-12-01 06:01+0000\n" "Last-Translator: xianghui liu \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-01 04:51+0000\n" +"X-Launchpad-Export-Date: 2009-12-02 04:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../data/ui/LernidWindow.ui.h:1 diff -Nru /tmp/jiJytGNdW2/lernid-0.2/setup.py /tmp/LBVtcyjPx5/lernid-0.3/setup.py --- lernid-0.2/setup.py 2009-12-01 17:06:46.000000000 +0000 +++ lernid-0.3/setup.py 2009-12-10 17:00:30.000000000 +0000 @@ -93,7 +93,7 @@ DistUtilsExtra.auto.setup( name='lernid', - version='0.2', + version='0.3', license='GPL-3', author='Jono Bacon', author_email='jono@ubuntu.com',