Merge lp:~jsjgruber/lernid/lernid-proposed into lp:lernid

Proposed by John S. Gruber
Status: Merged
Approved by: John S. Gruber
Approved revision: no longer in the source branch.
Merged at revision: 241
Proposed branch: lp:~jsjgruber/lernid/lernid-proposed
Merge into: lp:lernid
Diff against target: 2983 lines (+636/-637)
50 files modified
bin/lernid (+7/-9)
debian/changelog (+22/-0)
etc/lernid-classrooms.d/ubuntu-classroom (+1/-1)
lernid.1 (+0/-3)
lernid/Sessions.py (+6/-7)
lernid/lernidconfig.py (+1/-1)
lernid/widgets/Browser.py (+225/-182)
lernid/widgets/Schedule.py (+1/-1)
lernid/widgets/WebChatroom.py (+0/-61)
lernid/widgets/__init__.py (+0/-1)
po/af.po (+8/-8)
po/ar.po (+10/-11)
po/ast.po (+8/-8)
po/ca.po (+9/-9)
po/cs.po (+8/-8)
po/da.po (+8/-8)
po/de.po (+11/-11)
po/el.po (+9/-9)
po/en_AU.po (+10/-10)
po/en_CA.po (+10/-10)
po/en_GB.po (+12/-11)
po/eo.po (+9/-9)
po/es.po (+13/-13)
po/es_AR.po (+8/-8)
po/eu.po (+9/-9)
po/fi.po (+8/-8)
po/fil.po (+12/-11)
po/fr.po (+12/-12)
po/he.po (+9/-9)
po/hr.po (+9/-9)
po/hu.po (+9/-9)
po/id.po (+8/-8)
po/it.po (+10/-10)
po/jbo.po (+8/-8)
po/ms.po (+10/-10)
po/nb.po (+8/-8)
po/nl.po (+12/-12)
po/oc.po (+9/-9)
po/pl.po (+11/-11)
po/pt.po (+8/-8)
po/pt_BR.po (+10/-10)
po/ro.po (+8/-8)
po/ru.po (+9/-9)
po/sl.po (+10/-10)
po/sv.po (+11/-11)
po/te.po (+8/-8)
po/tr.po (+9/-9)
po/uk.po (+10/-10)
po/zh_CN.po (+12/-11)
setup.py (+1/-1)
To merge this branch: bzr merge lp:~jsjgruber/lernid/lernid-proposed
Reviewer Review Type Date Requested Status
John S. Gruber Pending
Review via email: mp+307056@code.launchpad.net

Description of the change

Changes to increase Lernid utility while no sessions are scheduled

To post a comment you must log in.
lp:~jsjgruber/lernid/lernid-proposed updated
241. By John S. Gruber

releasing package lernid version 1.0.6

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bin/lernid'
--- bin/lernid 2013-03-01 01:13:45 +0000
+++ bin/lernid 2016-09-28 16:23:33 +0000
@@ -116,13 +116,11 @@
116 # Set up widgets116 # Set up widgets
117 self._eventman = EventManager.get_instance()117 self._eventman = EventManager.get_instance()
118 self._browser = Browser.Browser()118 self._browser = Browser.Browser()
119 logging.debug("browser embedded " + str(self._browser.embedded))
119 self._slide = Slide.Slide(Preferences.get('vertical'))120 self._slide = Slide.Slide(Preferences.get('vertical'))
120 self._schedule = Schedule.Schedule()121 self._schedule = Schedule.Schedule()
121 self._classroom = Classroom.Classroom()122 self._classroom = Classroom.Classroom()
122 if Options.get('web-chat'):123 self._chatroom = NativeChatroom.Chatroom()
123 self._chatroom = WebChatroom.Chatroom()
124 else:
125 self._chatroom = NativeChatroom.Chatroom()
126 if Terminal.VTE_SUPPORT:124 if Terminal.VTE_SUPPORT:
127 self._terminal = Terminal.Terminal()125 self._terminal = Terminal.Terminal()
128126
@@ -166,7 +164,7 @@
166 'Please reestablish your Internet connection and reconnect to the event'), 'interrupt_message')164 'Please reestablish your Internet connection and reconnect to the event'), 'interrupt_message')
167 self.emit('event-disconnect', event)165 self.emit('event-disconnect', event)
168166
169 self._browser.connect('page-changed', highlight_session_tab)167 if self._browser.embedded: self._browser.connect('page-changed', highlight_session_tab)
170 self._slide.connect('slide-changed', highlight_session_tab)168 self._slide.connect('slide-changed', highlight_session_tab)
171 self._main_window.connect('configure-event', configure_event_mainwindow)169 self._main_window.connect('configure-event', configure_event_mainwindow)
172170
@@ -239,7 +237,8 @@
239 def toggle_menu_items(eventman, event, connecting):237 def toggle_menu_items(eventman, event, connecting):
240 conn_menu_item.set_sensitive(not connecting)238 conn_menu_item.set_sensitive(not connecting)
241 disconn_menu_item.set_sensitive(connecting)239 disconn_menu_item.set_sensitive(connecting)
242 open_url_menu_item.set_sensitive(connecting)240 if self._browser.embedded:
241 open_url_menu_item.set_sensitive(connecting)
243 if hasattr(self, 'ind'):242 if hasattr(self, 'ind'):
244 self.indmenu['menu_connect'].set_sensitive(not connecting)243 self.indmenu['menu_connect'].set_sensitive(not connecting)
245 self.indmenu['menu_disconnect'].set_sensitive(connecting)244 self.indmenu['menu_disconnect'].set_sensitive(connecting)
@@ -263,7 +262,8 @@
263 self._session_label.set_label(_('_Session'))262 self._session_label.set_label(_('_Session'))
264 self._tabs.insert_page(paned, self._session_label, self.TAB_SESSION)263 self._tabs.insert_page(paned, self._session_label, self.TAB_SESSION)
265264
266 paned.pack1(self._browser, resize=True)265 if self._browser.embedded:
266 paned.pack1(self._browser, resize=True)
267 paned.pack2(self._slide, resize=False)267 paned.pack2(self._slide, resize=False)
268268
269 # Setup schedule tab269 # Setup schedule tab
@@ -516,8 +516,6 @@
516 help=_('Filename or URL to Lernid config file'))516 help=_('Filename or URL to Lernid config file'))
517 Options.add_option('--no-update', action='store_true', default=False,517 Options.add_option('--no-update', action='store_true', default=False,
518 help=_("Don't automatically reload the schedule"))518 help=_("Don't automatically reload the schedule"))
519 Options.add_option('--web-chat', action='store_true', default=False,
520 help=_('Use web chat widget instead of the native one'))
521 Options.add_option('--unsafe-override', action='store_true', default=False,519 Options.add_option('--unsafe-override', action='store_true', default=False,
522 help=_('Unsafe testing option'))520 help=_('Unsafe testing option'))
523 Options.add_option('--avoid-desktopcouch', action='store_true', default=False,521 Options.add_option('--avoid-desktopcouch', action='store_true', default=False,
524522
=== modified file 'debian/changelog'
--- debian/changelog 2016-02-01 23:46:22 +0000
+++ debian/changelog 2016-09-28 16:23:33 +0000
@@ -1,3 +1,25 @@
1lernid (1.0.6~jsg2) xenial; urgency=medium
2
3 * New release set-up
4
5 * Merge pending translations
6
7 * Note that #ubuntu-classroom is inactive
8
9 * Remove the limitation that only sessions in the last six months are
10 listed in the schedule. This allows access to the irc logs of
11 previous sessions. The calendar is still scrolled to the current time.
12 Addresses lp: #1591343.
13
14 * Remove the strong dependency on python-webkit in upstream lernid.
15
16 If python-webkit is not installed lernid will now bring up the urls
17 mentioned in a new tab in the user's default browser.
18
19 As part of this change the web-chat option was removed.
20
21 -- John S Gruber <JohnSGruber@gmail.com> Tue, 27 Sep 2016 14:56:03 -0400
22
1lernid (1.0.5) trusty; urgency=medium23lernid (1.0.5) trusty; urgency=medium
224
3 * Rebuild to get consistent numbers; trusty and newer; dh-python is25 * Rebuild to get consistent numbers; trusty and newer; dh-python is
426
=== modified file 'etc/lernid-classrooms.d/ubuntu-classroom'
--- etc/lernid-classrooms.d/ubuntu-classroom 2012-04-10 17:57:09 +0000
+++ etc/lernid-classrooms.d/ubuntu-classroom 2016-09-28 16:23:33 +0000
@@ -1,4 +1,4 @@
1[#ubuntu-classroom -- In English] 1[#ubuntu-classroom -- In English (Inactive)]
2homepage: https://wiki.ubuntu.com/Classroom2homepage: https://wiki.ubuntu.com/Classroom
3classroom: ubuntu-classroom3classroom: ubuntu-classroom
4chat: ubuntu-classroom-chat4chat: ubuntu-classroom-chat
55
=== modified file 'lernid.1'
--- lernid.1 2013-03-02 03:29:15 +0000
+++ lernid.1 2016-09-28 16:23:33 +0000
@@ -51,9 +51,6 @@
51Only update the schedule when connecting to an event, or when the refresh button51Only update the schedule when connecting to an event, or when the refresh button
52is pressed52is pressed
53.B53.B
54.IP "--web-chat"
55Use web browser to connect to IRC chatrooms.
56.B
57.IP "--unsafe-override"54.IP "--unsafe-override"
58Allow anyone sending messages to the classroom to provide slides and web pages to your session. Normally only those authorized to present sessions are allowed to control these features of Lernid.55Allow anyone sending messages to the classroom to provide slides and web pages to your session. Normally only those authorized to present sessions are allowed to control these features of Lernid.
5956
6057
=== modified file 'lernid/Sessions.py'
--- lernid/Sessions.py 2012-04-22 16:29:33 +0000
+++ lernid/Sessions.py 2016-09-28 16:23:33 +0000
@@ -206,13 +206,12 @@
206 else:206 else:
207 uid = 0207 uid = 0
208 if eventstart_local <= local_start <= eventend_local:208 if eventstart_local <= local_start <= eventend_local:
209 if local_start > dt.now_local() - half_year:209 sessions.append(Session(
210 sessions.append(Session(210 title = summary,
211 title = summary,211 local_start = local_start,
212 local_start = local_start,212 local_end = local_end,
213 local_end = local_end,213 uid = uid,
214 uid = uid,214 **session_data))
215 **session_data))
216215
217 # reverse the list to get the events in chronological order216 # reverse the list to get the events in chronological order
218 sessions.sort(lambda x,y: cmp(x.start_datetime, y.start_datetime))217 sessions.sort(lambda x,y: cmp(x.start_datetime, y.start_datetime))
219218
=== modified file 'lernid/lernidconfig.py'
--- lernid/lernidconfig.py 2016-01-27 14:13:39 +0000
+++ lernid/lernidconfig.py 2016-09-28 16:23:33 +0000
@@ -31,7 +31,7 @@
3131
32def _(message): return message32def _(message): return message
3333
34VERSION = '1.0.4'34VERSION = '1.0.6'
35DESCRIPTION = _('Connect to a world of online tutorials quickly and easily.')35DESCRIPTION = _('Connect to a world of online tutorials quickly and easily.')
36WEBSITE = 'http://wiki.ubuntu.com/Lernid'36WEBSITE = 'http://wiki.ubuntu.com/Lernid'
37CONTRIBUTORS = [37CONTRIBUTORS = [
3838
=== modified file 'lernid/widgets/Browser.py'
--- lernid/widgets/Browser.py 2013-02-28 23:58:17 +0000
+++ lernid/widgets/Browser.py 2016-09-28 16:23:33 +0000
@@ -19,7 +19,6 @@
1919
20import gtk20import gtk
21import gobject21import gobject
22import webkit
23import logging22import logging
24import re23import re
25import webbrowser24import webbrowser
@@ -29,6 +28,11 @@
29from urlparse import urlparse28from urlparse import urlparse
30from lernid.lernidconfig import get_data_path, VERSION29from lernid.lernidconfig import get_data_path, VERSION
31from lernid.LernidPreferences import Preferences30from lernid.LernidPreferences import Preferences
31try:
32 import webkit
33 HAVE_WEBKIT = True
34except ImportError:
35 HAVE_WEBKIT = False
3236
33class Browser(Widget):37class Browser(Widget):
3438
@@ -46,187 +50,7 @@
46 ),50 ),
47 }51 }
4852
49 def __init__(self):53 embedded = HAVE_WEBKIT
50 Widget.__init__(self, 'browser')
51
52 builder = self.builder_with_file('BrowserWidget.ui')
53 self.add(builder.get_object('browser_vbox'))
54 self._browser = webkit.WebView()
55
56 def sse2():
57 try:
58 info_file = open("/proc/cpuinfo")
59 except:
60 return False
61 flag_lines = [l for l in info_file if l.startswith("flags")]
62 if len(flag_lines) == 0: return False
63 return "sse2" in flag_lines[0]
64
65 browser_settings=webkit.WebSettings()
66 useragent=browser_settings.get_property('user-agent')
67 parts=useragent.split(' ')
68 parts[-1]='lernid/'+VERSION
69 browser_settings.set_property('user-agent', ' '.join(parts))
70 if not sse2():
71 browser_settings.set_property('enable-plugins', False)
72 else:
73 browser_settings.set_property('enable-plugins', True)
74 self._browser.set_settings(browser_settings)
75
76 scroll = builder.get_object('browser_scroll')
77 scroll.add(self._browser)
78
79 self._toolbar = builder.get_object('toolbar_hbox')
80 self._refresh_button = builder.get_object('browser_refresh')
81 self._stop_button = builder.get_object('browser_stop')
82
83 # set up browser combo box
84 self._url_combo = builder.get_object('browser_combo')
85 self._url_store = gtk.ListStore(str, str, bool) # Title string, URL, delete
86 self._url_combo.set_model(self._url_store)
87 title_cell = gtk.CellRendererText()
88 self._url_combo.pack_start(title_cell, True)
89 self._url_combo.add_attribute(title_cell, 'text', 0)
90
91 self._back_button = builder.get_object('browser_back')
92
93 # Connect the signals
94 builder.connect_signals(self)
95 self._browser.connect("show", self._set_toolbar_state, True)
96 self._browser.connect("hide", self._set_toolbar_state, False)
97 self._browser.connect("load-started", self._set_button_state, True)
98 self._browser.connect("load-finished", self._set_button_state, False)
99 self._browser.connect("load-finished", self._update_url_combo)
100 self._browser.set_property('can_focus', True)
101
102 self._paused = False
103 self._pause_button = builder.get_object('browser_pause')
104 def toggle_paused(button):
105 self._paused = not self._paused
106 self._pause_button.connect('toggled', toggle_paused)
107
108 self._toolbar.set_sensitive(False)
109
110 self._browser_settings = self._browser.get_settings()
111 self._browser_settings.set_property('user-stylesheet-uri', 'file://'+get_data_path()+'/stylesheet')
112
113 def do_event_connect(self, eventman, event):
114 classroom = eventman.get_widget_by_name('classroom')
115 self.event_connect_signal(classroom, 'message-received', self._classroom_msg_received)
116 self._toolbar.set_sensitive(True)
117 self._browser.show()
118 # FIXME: why does the button not follow sensitive state of the toolbar?
119 self._pause_button.set_sensitive(True)
120 # Ideally the homepage should be opened inside Lernid itself
121 self.set_location(event.homepage, False)
122 schedule = eventman.get_widget_by_name('schedule')
123 self._on_faculty = schedule.on_faculty # retrieve method
124
125 def do_event_disconnect(self, eventman, event):
126 self._url_combo.handler_block_by_func(self._change_page)
127 self._browser.handler_block_by_func(self._update_url_combo)
128 self._browser.open('about:blank')
129 self._url_store.clear()
130 self._browser.handler_unblock_by_func(self._update_url_combo)
131 self._url_combo.handler_unblock_by_func(self._change_page)
132 self._history = []
133 self._current = None
134 self._back_button.set_sensitive(False)
135 self._pause_button.set_sensitive(False)
136 self._toolbar.set_sensitive(False)
137 self.event_disconnect_signals()
138
139 def get_location(self):
140 return self._browser.get_property('uri')
141
142 def set_location(self, url, in_default_browser = True):
143 if urlparse(url).scheme == '':
144 url = 'http://' + url
145 logging.debug('opening url: '+url)
146 # check if prefernce is set and the link was inside chat
147 if Preferences.get('links_in_default_browser') and in_default_browser:
148 webbrowser.open_new_tab(url)
149 logging.debug('opening url in tab in default browser: '+url)
150 else:
151 self._browser.open(url)
152 self.emit('page-changed', url)
153
154 def _back(self, button):
155 self._browser.go_back()
156
157 def _refresh(self, button):
158 self._browser.reload()
159
160 def _stop(self, button):
161 self._browser.stop_loading()
162
163 def _set_toolbar_state(self, browser, state):
164 """Make all buttons on the brower's toolbar insensitive"""
165 # We make the toolbar insensitive, and thereby its children as well
166 self._toolbar.set_sensitive(state)
167
168 def _set_button_state(self, browser, frame, loading):
169 """Change the stop and reload button states"""
170 self._refresh_button.set_sensitive(not loading)
171 self._stop_button.set_sensitive(loading)
172 if loading:
173 self.emit('page-loading', browser.get_property('uri'))
174 if not self._browser.can_go_back():
175 self._back_button.set_sensitive(False)
176
177 def _update_url_combo(self, browser, *args):
178 """Update the browser url combo box with the new title."""
179 url = browser.get_property('uri')
180 if url == None:
181 url = ''
182 logging.debug('update url combo: {0}'.format(url))
183 if url == 'about:blank':
184 return
185 if self._browser.can_go_back():
186 self._back_button.set_sensitive(True)
187 match = False
188 storeiter = self._url_store.get_iter_first()
189 while storeiter:
190 if self._url_store.get_value(storeiter, 1) == url:
191 match = True
192 self._url_store.move_before(storeiter, self._url_store.get_iter_first())
193 self._url_combo.set_active_iter(storeiter)
194 break
195 storeiter = self._url_store.iter_next(storeiter)
196 if not match:
197 title = browser.get_property('title')
198 if title is None: title = ''
199 urllen = 150 - len(title)
200 shorturl = url
201 if len(url) > urllen:
202 shorturl = url[:urllen] + '...'
203 item = "{0} ({1})".format(title, shorturl)
204 self._url_store.prepend([item, url, False])
205 self._url_combo.set_active(0)
206 self.emit('page-loaded', url)
207
208 def _change_page(self, combo):
209 logging.debug('change page: {0}'.format(combo.get_active()))
210 if len(self._url_store) == 0:
211 return
212 url = self._url_store[self._url_combo.get_active()][1]
213 delete = self._url_store[self._url_combo.get_active()][2]
214 if delete:
215 del self._url_store[self._url_combo.get_active()]
216 if url != self._browser.get_property('uri'):
217 logging.debug('{0} != {1}'.format(url, self._browser.get_property('uri')))
218 self.set_location(url)
219
220 def _classroom_msg_received(self, classroom, chan, sender, text):
221 if not Options.get('unsafe-override') and not self._on_faculty(sender):
222 return
223 load, ignore = self._parse_urls(text)
224 if load and not self._paused:
225 self.set_location(load)
226 elif load:
227 ignore.insert(0, load)
228 for url in ignore:
229 self._url_store.prepend([url, url, True])
23054
231 def _parse_urls(self, message):55 def _parse_urls(self, message):
232 """Parse a message for URLs and return a tuple with the first56 """Parse a message for URLs and return a tuple with the first
@@ -249,3 +73,222 @@
249 else:73 else:
250 load = cleanurl(url)74 load = cleanurl(url)
251 return (load, ignore)75 return (load, ignore)
76
77 if not HAVE_WEBKIT:
78
79 def __init__(self):
80 self.location = ""
81 Widget.__init__(self, 'browser')
82
83 def do_event_connect(self, eventman, event):
84 classroom = eventman.get_widget_by_name('classroom')
85 self.event_connect_signal(classroom, 'message-received', self._classroom_msg_received)
86 # Ideally the homepage should be opened inside Lernid itself
87 self.set_location(event.homepage, False)
88 schedule = eventman.get_widget_by_name('schedule')
89 self._on_faculty = schedule.on_faculty # retrieve method
90
91 def do_event_disconnect(self, eventman, event):
92 self.event_disconnect_signals()
93
94 def set_location(self, url, in_default_browser = True):
95 if urlparse(url).scheme == '':
96 url = 'http://' + url
97 self.location = url
98 logging.debug("url sent to browser " + url)
99 webbrowser.open_new_tab(url)
100
101 def get_location(self):
102 return(self.location)
103
104 def _classroom_msg_received(self, classroom, chan, sender, text):
105 if not Options.get('unsafe-override') and not self._on_faculty(sender):
106 return
107 load, ignore = self._parse_urls(text)
108 if load:
109 self.set_location(load)
110
111 else:
112
113 def __init__(self):
114 Widget.__init__(self, 'browser')
115
116 builder = self.builder_with_file('BrowserWidget.ui')
117 self.add(builder.get_object('browser_vbox'))
118 self._browser = webkit.WebView()
119
120 def sse2():
121 try:
122 info_file = open("/proc/cpuinfo")
123 except:
124 return False
125 flag_lines = [l for l in info_file if l.startswith("flags")]
126 if len(flag_lines) == 0: return False
127 return "sse2" in flag_lines[0]
128
129 browser_settings=webkit.WebSettings()
130 useragent=browser_settings.get_property('user-agent')
131 parts=useragent.split(' ')
132 parts[-1]='lernid/'+VERSION
133 browser_settings.set_property('user-agent', ' '.join(parts))
134 if not sse2():
135 browser_settings.set_property('enable-plugins', False)
136 else:
137 browser_settings.set_property('enable-plugins', True)
138 self._browser.set_settings(browser_settings)
139
140 scroll = builder.get_object('browser_scroll')
141 scroll.add(self._browser)
142
143 self._toolbar = builder.get_object('toolbar_hbox')
144 self._refresh_button = builder.get_object('browser_refresh')
145 self._stop_button = builder.get_object('browser_stop')
146
147 # set up browser combo box
148 self._url_combo = builder.get_object('browser_combo')
149 self._url_store = gtk.ListStore(str, str, bool) # Title string, URL, delete
150 self._url_combo.set_model(self._url_store)
151 title_cell = gtk.CellRendererText()
152 self._url_combo.pack_start(title_cell, True)
153 self._url_combo.add_attribute(title_cell, 'text', 0)
154
155 self._back_button = builder.get_object('browser_back')
156
157 # Connect the signals
158 builder.connect_signals(self)
159 self._browser.connect("show", self._set_toolbar_state, True)
160 self._browser.connect("hide", self._set_toolbar_state, False)
161 self._browser.connect("load-started", self._set_button_state, True)
162 self._browser.connect("load-finished", self._set_button_state, False)
163 self._browser.connect("load-finished", self._update_url_combo)
164 self._browser.set_property('can_focus', True)
165
166 self._paused = False
167 self._pause_button = builder.get_object('browser_pause')
168 def toggle_paused(button):
169 self._paused = not self._paused
170 self._pause_button.connect('toggled', toggle_paused)
171
172 self._toolbar.set_sensitive(False)
173
174 self._browser_settings = self._browser.get_settings()
175 self._browser_settings.set_property('user-stylesheet-uri', 'file://'+get_data_path()+'/stylesheet')
176
177 def do_event_connect(self, eventman, event):
178 classroom = eventman.get_widget_by_name('classroom')
179 self.event_connect_signal(classroom, 'message-received', self._classroom_msg_received)
180 self._toolbar.set_sensitive(True)
181 self._browser.show()
182 # FIXME: why does the button not follow sensitive state of the toolbar?
183 self._pause_button.set_sensitive(True)
184 # Ideally the homepage should be opened inside Lernid itself
185 self.set_location(event.homepage, False)
186 schedule = eventman.get_widget_by_name('schedule')
187 self._on_faculty = schedule.on_faculty # retrieve method
188
189 def do_event_disconnect(self, eventman, event):
190 self._url_combo.handler_block_by_func(self._change_page)
191 self._browser.handler_block_by_func(self._update_url_combo)
192 self._browser.open('about:blank')
193 self._url_store.clear()
194 self._browser.handler_unblock_by_func(self._update_url_combo)
195 self._url_combo.handler_unblock_by_func(self._change_page)
196 self._history = []
197 self._current = None
198 self._back_button.set_sensitive(False)
199 self._pause_button.set_sensitive(False)
200 self._toolbar.set_sensitive(False)
201 self.event_disconnect_signals()
202
203 def get_location(self):
204 return self._browser.get_property('uri')
205
206 def set_location(self, url, in_default_browser = True):
207 if urlparse(url).scheme == '':
208 url = 'http://' + url
209 logging.debug('opening url: '+url)
210 # check if prefernce is set and the link was inside chat
211 if Preferences.get('links_in_default_browser') and in_default_browser:
212 webbrowser.open_new_tab(url)
213 logging.debug('opening url in tab in default browser: '+url)
214 else:
215 self._browser.open(url)
216 self.emit('page-changed', url)
217
218 def _back(self, button):
219 self._browser.go_back()
220
221 def _refresh(self, button):
222 self._browser.reload()
223
224 def _stop(self, button):
225 self._browser.stop_loading()
226
227 def _set_toolbar_state(self, browser, state):
228 """Make all buttons on the brower's toolbar insensitive"""
229 # We make the toolbar insensitive, and thereby its children as well
230 self._toolbar.set_sensitive(state)
231
232 def _set_button_state(self, browser, frame, loading):
233 """Change the stop and reload button states"""
234 self._refresh_button.set_sensitive(not loading)
235 self._stop_button.set_sensitive(loading)
236 if loading:
237 self.emit('page-loading', browser.get_property('uri'))
238 if not self._browser.can_go_back():
239 self._back_button.set_sensitive(False)
240
241 def _update_url_combo(self, browser, *args):
242 """Update the browser url combo box with the new title."""
243 url = browser.get_property('uri')
244 if url == None:
245 url = ''
246 logging.debug('update url combo: {0}'.format(url))
247 if url == 'about:blank':
248 return
249 if self._browser.can_go_back():
250 self._back_button.set_sensitive(True)
251 match = False
252 storeiter = self._url_store.get_iter_first()
253 while storeiter:
254 if self._url_store.get_value(storeiter, 1) == url:
255 match = True
256 self._url_store.move_before(storeiter, self._url_store.get_iter_first())
257 self._url_combo.set_active_iter(storeiter)
258 break
259 storeiter = self._url_store.iter_next(storeiter)
260 if not match:
261 title = browser.get_property('title')
262 if title is None: title = ''
263 urllen = 150 - len(title)
264 shorturl = url
265 if len(url) > urllen:
266 shorturl = url[:urllen] + '...'
267 item = "{0} ({1})".format(title, shorturl)
268 self._url_store.prepend([item, url, False])
269 self._url_combo.set_active(0)
270 self.emit('page-loaded', url)
271
272 def _change_page(self, combo):
273 logging.debug('change page: {0}'.format(combo.get_active()))
274 if len(self._url_store) == 0:
275 return
276 url = self._url_store[self._url_combo.get_active()][1]
277 delete = self._url_store[self._url_combo.get_active()][2]
278 if delete:
279 del self._url_store[self._url_combo.get_active()]
280 if url != self._browser.get_property('uri'):
281 logging.debug('{0} != {1}'.format(url, self._browser.get_property('uri')))
282 self.set_location(url)
283
284 def _classroom_msg_received(self, classroom, chan, sender, text):
285 if not Options.get('unsafe-override') and not self._on_faculty(sender):
286 return
287 load, ignore = self._parse_urls(text)
288 if load and not self._paused:
289 self.set_location(load)
290 elif load:
291 ignore.insert(0, load)
292 for url in ignore:
293 self._url_store.prepend([url, url, True])
294
252295
=== modified file 'lernid/widgets/Schedule.py'
--- lernid/widgets/Schedule.py 2012-05-04 01:17:25 +0000
+++ lernid/widgets/Schedule.py 2016-09-28 16:23:33 +0000
@@ -324,7 +324,7 @@
324 self._scroll_to = self._model.get_path(current_row)324 self._scroll_to = self._model.get_path(current_row)
325 self._update_currency()325 self._update_currency()
326326
327 insert_blank_lines(40)327 insert_blank_lines(30)
328328
329 if initial and self._scroll_to:329 if initial and self._scroll_to:
330 self._treeview.scroll_to_cell(self._scroll_to, use_align=True, row_align=.2)330 self._treeview.scroll_to_cell(self._scroll_to, use_align=True, row_align=.2)
331331
=== removed file 'lernid/widgets/WebChatroom.py'
--- lernid/widgets/WebChatroom.py 2011-06-23 19:19:04 +0000
+++ lernid/widgets/WebChatroom.py 1970-01-01 00:00:00 +0000
@@ -1,61 +0,0 @@
1#!/usr/bin/python
2# -*- coding: utf-8 -*-
3### BEGIN LICENSE
4# Copyright (C) 2009 Jono Bacon <jono@ubuntu.com>
5# Copyright (C) 2010 Michael Budde <mbudde@gmail.com>
6#
7#This program is free software: you can redistribute it and/or modify it
8#under the terms of the GNU General Public License version 3, as published
9#by the Free Software Foundation.
10#
11#This program is distributed in the hope that it will be useful, but
12#WITHOUT ANY WARRANTY; without even the implied warranties of
13#MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
14#PURPOSE. See the GNU General Public License for more details.
15#
16#You should have received a copy of the GNU General Public License along
17#with this program. If not, see <http://www.gnu.org/licenses/>.
18### END LICENSE
19
20import gtk
21import gobject
22import webkit
23
24from lernid.widgets.Widget import Widget
25
26class Chatroom(Widget):
27
28 __gtype_name__ = 'LernidWebChatroom'
29
30 __gsignals__ = {
31 'members-changed': (
32 gobject.SIGNAL_RUN_LAST, None, (object,)
33 ),
34 }
35
36 def __init__(self):
37 Widget.__init__(self, 'chatroom')
38 scroll = gtk.ScrolledWindow()
39 scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
40 self._chat = webkit.WebView()
41 scroll.add_with_viewport(self._chat)
42 self.add(scroll)
43
44 self._chat.add_events(gtk.gdk.ENTER_NOTIFY_MASK)
45 self._chat.props.can_focus = True
46 def get_focus(chat, event):
47 chat.grab_focus()
48 self._chat.connect('enter-notify-event', get_focus)
49
50 def do_event_connect(self, event_man, event):
51 chatirc = 'http://webchat.freenode.net/?nick={nick}&channels={chans}'.format(
52 nick=event.nick, chans=event.chat)
53 self._chat.load_uri(chatirc)
54 self._chat.show()
55
56 def do_event_disconnect(self, event_man, event):
57 self._chat.load_uri('about:blank')
58 self._chat.hide()
59
60 def get_input_widget(self):
61 return self._chat
620
=== modified file 'lernid/widgets/__init__.py'
--- lernid/widgets/__init__.py 2010-01-09 15:19:25 +0000
+++ lernid/widgets/__init__.py 2016-09-28 16:23:33 +0000
@@ -5,5 +5,4 @@
5 'Schedule',5 'Schedule',
6 'Slide',6 'Slide',
7 'Terminal',7 'Terminal',
8 'WebChatroom',
9]8]
109
=== modified file 'po/af.po'
--- po/af.po 2012-08-28 07:10:45 +0000
+++ po/af.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: Afrikaans <af@li.org>\n"13"Language-Team: Afrikaans <af@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:45+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -48,10 +48,6 @@
48"instructor"48"instructor"
49msgstr ""49msgstr ""
5050
51#: ../lernid/lernidconfig.py:35
52msgid "Connect to a world of online tutorials quickly and easily."
53msgstr ""
54
55#. Translators: Local time representation51#. Translators: Local time representation
56#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8152#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
57#: ../lernid/Sessions.py:8653#: ../lernid/Sessions.py:86
@@ -144,7 +140,7 @@
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:5142#: ../data/ui/LernidWindow.ui.h:5
147msgid "Tweet current session"143msgid "Publicize with Gwibber"
148msgstr ""144msgstr ""
149145
150#: ../data/ui/LernidWindow.ui.h:6146#: ../data/ui/LernidWindow.ui.h:6
@@ -413,6 +409,10 @@
413msgid "Nick can only contain English alphabet characters"409msgid "Nick can only contain English alphabet characters"
414msgstr ""410msgstr ""
415411
412#: ../lernid/lernidconfig.py:35
413msgid "Connect to a world of online tutorials quickly and easily."
414msgstr ""
415
416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
417#: ../lernid/widgets/NativeChatroom.py:94417#: ../lernid/widgets/NativeChatroom.py:94
418#, python-format418#, python-format
419419
=== modified file 'po/ar.po'
--- po/ar.po 2012-08-28 07:10:45 +0000
+++ po/ar.po 2016-09-28 16:23:33 +0000
@@ -7,8 +7,8 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:49+0000\n"
12"Last-Translator: Michael Budde <mbudde@gmail.com>\n"12"Last-Translator: Michael Budde <mbudde@gmail.com>\n"
13"Language-Team: Arabic <ar@li.org>\n"13"Language-Team: Arabic <ar@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
@@ -16,8 +16,8 @@
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= "17"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= "
18"3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n"18"3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:45+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
@@ -28,7 +28,6 @@
28" Michael Budde https://launchpad.net/~mbudde\n"28" Michael Budde https://launchpad.net/~mbudde\n"
29" Mohammad AbuShady https://launchpad.net/~coalwater\n"29" Mohammad AbuShady https://launchpad.net/~coalwater\n"
30" Yazin Alhamdi https://launchpad.net/~yazin-alhamdi\n"30" Yazin Alhamdi https://launchpad.net/~yazin-alhamdi\n"
31" eyadof https://launchpad.net/~eyadof-n\n"
32" m.ayad https://launchpad.net/~m-ayad"31" m.ayad https://launchpad.net/~m-ayad"
3332
34#: ../data/ui/PasswordDialog.ui.h:133#: ../data/ui/PasswordDialog.ui.h:1
@@ -54,10 +53,6 @@
54"instructor"53"instructor"
55msgstr ""54msgstr ""
5655
57#: ../lernid/lernidconfig.py:35
58msgid "Connect to a world of online tutorials quickly and easily."
59msgstr "إتصل عبر عالم الإنترنت للحصول على الدروس بسرعه وسهولة."
60
61#. Translators: Local time representation56#. Translators: Local time representation
62#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8157#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
63#: ../lernid/Sessions.py:8658#: ../lernid/Sessions.py:86
@@ -150,8 +145,8 @@
150msgstr ""145msgstr ""
151146
152#: ../data/ui/LernidWindow.ui.h:5147#: ../data/ui/LernidWindow.ui.h:5
153msgid "Tweet current session"148msgid "Publicize with Gwibber"
154msgstr "تصفير الدوره الحاليه"149msgstr ""
155150
156#: ../data/ui/LernidWindow.ui.h:6151#: ../data/ui/LernidWindow.ui.h:6
157msgid "_Edit"152msgid "_Edit"
@@ -423,6 +418,10 @@
423msgid "Nick can only contain English alphabet characters"418msgid "Nick can only contain English alphabet characters"
424msgstr "الإسم المستعار يجب أن يحتوي على رموز وحروف انجليزية فقط"419msgstr "الإسم المستعار يجب أن يحتوي على رموز وحروف انجليزية فقط"
425420
421#: ../lernid/lernidconfig.py:35
422msgid "Connect to a world of online tutorials quickly and easily."
423msgstr "إتصل عبر عالم الإنترنت للحصول على الدروس بسرعه وسهولة."
424
426#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale425#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
427#: ../lernid/widgets/NativeChatroom.py:94426#: ../lernid/widgets/NativeChatroom.py:94
428#, python-format427#, python-format
429428
=== modified file 'po/ast.po'
--- po/ast.po 2012-08-28 07:10:45 +0000
+++ po/ast.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 16:41+0000\n"11"PO-Revision-Date: 2010-08-02 16:41+0000\n"
12"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"12"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
13"Language-Team: Asturian <ast@li.org>\n"13"Language-Team: Asturian <ast@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:45+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -47,10 +47,6 @@
47"instructor"47"instructor"
48msgstr ""48msgstr ""
4949
50#: ../lernid/lernidconfig.py:35
51msgid "Connect to a world of online tutorials quickly and easily."
52msgstr "Coneutase a un mundu de tutoriales en llinia darréu y fácilmente"
53
54#. Translators: Local time representation50#. Translators: Local time representation
55#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8151#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
56#: ../lernid/Sessions.py:8652#: ../lernid/Sessions.py:86
@@ -143,7 +139,7 @@
143msgstr ""139msgstr ""
144140
145#: ../data/ui/LernidWindow.ui.h:5141#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"142msgid "Publicize with Gwibber"
147msgstr ""143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:6145#: ../data/ui/LernidWindow.ui.h:6
@@ -412,6 +408,10 @@
412msgid "Nick can only contain English alphabet characters"408msgid "Nick can only contain English alphabet characters"
413msgstr ""409msgstr ""
414410
411#: ../lernid/lernidconfig.py:35
412msgid "Connect to a world of online tutorials quickly and easily."
413msgstr "Coneutase a un mundu de tutoriales en llinia darréu y fácilmente"
414
415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
416#: ../lernid/widgets/NativeChatroom.py:94416#: ../lernid/widgets/NativeChatroom.py:94
417#, python-format417#, python-format
418418
=== modified file 'po/ca.po'
--- po/ca.po 2012-08-28 07:10:45 +0000
+++ po/ca.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 15:41+0000\n"11"PO-Revision-Date: 2010-08-02 15:41+0000\n"
12"Last-Translator: Michael Budde <mbudde@gmail.com>\n"12"Last-Translator: Michael Budde <mbudde@gmail.com>\n"
13"Language-Team: Catalan <ca@li.org>\n"13"Language-Team: Catalan <ca@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -46,11 +46,6 @@
46"instructor"46"instructor"
47msgstr ""47msgstr ""
4848
49#: ../lernid/lernidconfig.py:35
50msgid "Connect to a world of online tutorials quickly and easily."
51msgstr ""
52"Connecteu-vos a un món de programes d'aprenentatge de manera ràpida i fàcil."
53
54#. Translators: Local time representation49#. Translators: Local time representation
55#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8150#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
56#: ../lernid/Sessions.py:8651#: ../lernid/Sessions.py:86
@@ -143,7 +138,7 @@
143msgstr ""138msgstr ""
144139
145#: ../data/ui/LernidWindow.ui.h:5140#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"141msgid "Publicize with Gwibber"
147msgstr ""142msgstr ""
148143
149#: ../data/ui/LernidWindow.ui.h:6144#: ../data/ui/LernidWindow.ui.h:6
@@ -412,6 +407,11 @@
412msgid "Nick can only contain English alphabet characters"407msgid "Nick can only contain English alphabet characters"
413msgstr "El sobrenom només pot contenir caràcters de l'alfabet anglès"408msgstr "El sobrenom només pot contenir caràcters de l'alfabet anglès"
414409
410#: ../lernid/lernidconfig.py:35
411msgid "Connect to a world of online tutorials quickly and easily."
412msgstr ""
413"Connecteu-vos a un món de programes d'aprenentatge de manera ràpida i fàcil."
414
415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
416#: ../lernid/widgets/NativeChatroom.py:94416#: ../lernid/widgets/NativeChatroom.py:94
417#, python-format417#, python-format
418418
=== modified file 'po/cs.po'
--- po/cs.po 2013-02-28 17:36:17 +0000
+++ po/cs.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 15:43+0000\n"11"PO-Revision-Date: 2010-08-02 15:43+0000\n"
12"Last-Translator: Vojtěch Trefný <vojtech.trefny@gmail.com>\n"12"Last-Translator: Vojtěch Trefný <vojtech.trefny@gmail.com>\n"
13"Language-Team: Czech <cs@li.org>\n"13"Language-Team: Czech <cs@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"17"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -45,10 +45,6 @@
45"instructor"45"instructor"
46msgstr ""46msgstr ""
4747
48#: ../lernid/lernidconfig.py:35
49msgid "Connect to a world of online tutorials quickly and easily."
50msgstr "Připojení do světa online tutoriálů snadno a rychle."
51
52#. Translators: Local time representation48#. Translators: Local time representation
53#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8149#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
54#: ../lernid/Sessions.py:8650#: ../lernid/Sessions.py:86
@@ -140,7 +136,7 @@
140msgstr ""136msgstr ""
141137
142#: ../data/ui/LernidWindow.ui.h:5138#: ../data/ui/LernidWindow.ui.h:5
143msgid "Tweet current session"139msgid "Publicize with Gwibber"
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:6142#: ../data/ui/LernidWindow.ui.h:6
@@ -410,6 +406,10 @@
410msgid "Nick can only contain English alphabet characters"406msgid "Nick can only contain English alphabet characters"
411msgstr "Přezdívka smí obsahovat pouze znaky anglické abecedy"407msgstr "Přezdívka smí obsahovat pouze znaky anglické abecedy"
412408
409#: ../lernid/lernidconfig.py:35
410msgid "Connect to a world of online tutorials quickly and easily."
411msgstr "Připojení do světa online tutoriálů snadno a rychle."
412
413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
414#: ../lernid/widgets/NativeChatroom.py:94414#: ../lernid/widgets/NativeChatroom.py:94
415#, python-format415#, python-format
416416
=== modified file 'po/da.po'
--- po/da.po 2012-08-28 07:10:45 +0000
+++ po/da.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: Michael Budde <mbudde@gmail.com>\n"12"Last-Translator: Michael Budde <mbudde@gmail.com>\n"
13"Language-Team: Danish <da@li.org>\n"13"Language-Team: Danish <da@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -49,10 +49,6 @@
49"instructor"49"instructor"
50msgstr ""50msgstr ""
5151
52#: ../lernid/lernidconfig.py:35
53msgid "Connect to a world of online tutorials quickly and easily."
54msgstr "Forbind til en verden af online-kurser hurtigt og let."
55
56#. Translators: Local time representation52#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -144,7 +140,7 @@
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:5142#: ../data/ui/LernidWindow.ui.h:5
147msgid "Tweet current session"143msgid "Publicize with Gwibber"
148msgstr ""144msgstr ""
149145
150#: ../data/ui/LernidWindow.ui.h:6146#: ../data/ui/LernidWindow.ui.h:6
@@ -413,6 +409,10 @@
413msgid "Nick can only contain English alphabet characters"409msgid "Nick can only contain English alphabet characters"
414msgstr ""410msgstr ""
415411
412#: ../lernid/lernidconfig.py:35
413msgid "Connect to a world of online tutorials quickly and easily."
414msgstr "Forbind til en verden af online-kurser hurtigt og let."
415
416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
417#: ../lernid/widgets/NativeChatroom.py:94417#: ../lernid/widgets/NativeChatroom.py:94
418#, python-format418#, python-format
419419
=== modified file 'po/de.po'
--- po/de.po 2013-02-28 17:36:17 +0000
+++ po/de.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:48+0000\n"
12"Last-Translator: cmdrhenner <cmdrhenner@gmail.com>\n"12"Last-Translator: cmdrhenner <cmdrhenner@gmail.com>\n"
13"Language-Team: German <de@li.org>\n"13"Language-Team: German <de@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -57,11 +57,6 @@
57"instructor"57"instructor"
58msgstr ""58msgstr ""
5959
60#: ../lernid/lernidconfig.py:35
61msgid "Connect to a world of online tutorials quickly and easily."
62msgstr ""
63"Einfach und schnell mit einer Vielzahl von Online-Anleitungen verbinden."
64
65#. Translators: Local time representation60#. Translators: Local time representation
66#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8161#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
67#: ../lernid/Sessions.py:8662#: ../lernid/Sessions.py:86
@@ -154,8 +149,8 @@
154msgstr ""149msgstr ""
155150
156#: ../data/ui/LernidWindow.ui.h:5151#: ../data/ui/LernidWindow.ui.h:5
157msgid "Tweet current session"152msgid "Publicize with Gwibber"
158msgstr "Aktuelle Sitzung twittern"153msgstr ""
159154
160#: ../data/ui/LernidWindow.ui.h:6155#: ../data/ui/LernidWindow.ui.h:6
161msgid "_Edit"156msgid "_Edit"
@@ -423,6 +418,11 @@
423msgid "Nick can only contain English alphabet characters"418msgid "Nick can only contain English alphabet characters"
424msgstr "Spitzname kann nur Zeichen des englischen Alphabets enthalten"419msgstr "Spitzname kann nur Zeichen des englischen Alphabets enthalten"
425420
421#: ../lernid/lernidconfig.py:35
422msgid "Connect to a world of online tutorials quickly and easily."
423msgstr ""
424"Einfach und schnell mit einer Vielzahl von Online-Anleitungen verbinden."
425
426#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale426#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
427#: ../lernid/widgets/NativeChatroom.py:94427#: ../lernid/widgets/NativeChatroom.py:94
428#, python-format428#, python-format
429429
=== modified file 'po/el.po'
--- po/el.po 2012-08-28 07:10:45 +0000
+++ po/el.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-02-24 21:24+0000\n"11"PO-Revision-Date: 2014-01-29 15:48+0000\n"
12"Last-Translator: John Xygonakis <c7p.admin@gmail.com>\n"12"Last-Translator: John Xygonakis <c7p.admin@gmail.com>\n"
13"Language-Team: Greek <el@li.org>\n"13"Language-Team: Greek <el@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -47,10 +47,6 @@
47"instructor"47"instructor"
48msgstr ""48msgstr ""
4949
50#: ../lernid/lernidconfig.py:35
51msgid "Connect to a world of online tutorials quickly and easily."
52msgstr "Συνδεθείτε εύκολα και γρήγορα στον κόσμο των ηλεκτρονικών μαθημάτων"
53
54#. Translators: Local time representation50#. Translators: Local time representation
55#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8151#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
56#: ../lernid/Sessions.py:8652#: ../lernid/Sessions.py:86
@@ -142,7 +138,7 @@
142msgstr ""138msgstr ""
143139
144#: ../data/ui/LernidWindow.ui.h:5140#: ../data/ui/LernidWindow.ui.h:5
145msgid "Tweet current session"141msgid "Publicize with Gwibber"
146msgstr ""142msgstr ""
147143
148#: ../data/ui/LernidWindow.ui.h:6144#: ../data/ui/LernidWindow.ui.h:6
@@ -411,6 +407,10 @@
411msgid "Nick can only contain English alphabet characters"407msgid "Nick can only contain English alphabet characters"
412msgstr ""408msgstr ""
413409
410#: ../lernid/lernidconfig.py:35
411msgid "Connect to a world of online tutorials quickly and easily."
412msgstr "Συνδεθείτε εύκολα και γρήγορα στον κόσμο των ηλεκτρονικών μαθημάτων"
413
414#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale414#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
415#: ../lernid/widgets/NativeChatroom.py:94415#: ../lernid/widgets/NativeChatroom.py:94
416#, python-format416#, python-format
417417
=== modified file 'po/en_AU.po'
--- po/en_AU.po 2012-08-28 07:10:45 +0000
+++ po/en_AU.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: Jared Norris <jrnorris@gmail.com>\n"12"Last-Translator: Jared Norris <jarednorris@ubuntu.com>\n"
13"Language-Team: English (Australia) <en_AU@li.org>\n"13"Language-Team: English (Australia) <en_AU@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -51,10 +51,6 @@
51"instructor"51"instructor"
52msgstr ""52msgstr ""
5353
54#: ../lernid/lernidconfig.py:35
55msgid "Connect to a world of online tutorials quickly and easily."
56msgstr "Connect to a world of online tutorials quickly and easily."
57
58#. Translators: Local time representation54#. Translators: Local time representation
59#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8155#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
60#: ../lernid/Sessions.py:8656#: ../lernid/Sessions.py:86
@@ -147,8 +143,8 @@
147msgstr ""143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:5145#: ../data/ui/LernidWindow.ui.h:5
150msgid "Tweet current session"146msgid "Publicize with Gwibber"
151msgstr "Tweet current session"147msgstr ""
152148
153#: ../data/ui/LernidWindow.ui.h:6149#: ../data/ui/LernidWindow.ui.h:6
154msgid "_Edit"150msgid "_Edit"
@@ -416,6 +412,10 @@
416msgid "Nick can only contain English alphabet characters"412msgid "Nick can only contain English alphabet characters"
417msgstr "Nick can only contain English alphabet characters"413msgstr "Nick can only contain English alphabet characters"
418414
415#: ../lernid/lernidconfig.py:35
416msgid "Connect to a world of online tutorials quickly and easily."
417msgstr "Connect to a world of online tutorials quickly and easily."
418
419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
420#: ../lernid/widgets/NativeChatroom.py:94420#: ../lernid/widgets/NativeChatroom.py:94
421#, python-format421#, python-format
422422
=== modified file 'po/en_CA.po'
--- po/en_CA.po 2012-08-28 07:10:45 +0000
+++ po/en_CA.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:49+0000\n"
12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: English (Canada) <en_CA@li.org>\n"13"Language-Team: English (Canada) <en_CA@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -53,10 +53,6 @@
53"instructor"53"instructor"
54msgstr ""54msgstr ""
5555
56#: ../lernid/lernidconfig.py:35
57msgid "Connect to a world of online tutorials quickly and easily."
58msgstr "Connect to a world of online tutorials quickly and easily."
59
60#. Translators: Local time representation56#. Translators: Local time representation
61#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8157#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
62#: ../lernid/Sessions.py:8658#: ../lernid/Sessions.py:86
@@ -149,8 +145,8 @@
149msgstr ""145msgstr ""
150146
151#: ../data/ui/LernidWindow.ui.h:5147#: ../data/ui/LernidWindow.ui.h:5
152msgid "Tweet current session"148msgid "Publicize with Gwibber"
153msgstr "Tweet current session"149msgstr ""
154150
155#: ../data/ui/LernidWindow.ui.h:6151#: ../data/ui/LernidWindow.ui.h:6
156msgid "_Edit"152msgid "_Edit"
@@ -418,6 +414,10 @@
418msgid "Nick can only contain English alphabet characters"414msgid "Nick can only contain English alphabet characters"
419msgstr "Nick can only contain English alphabet characters"415msgstr "Nick can only contain English alphabet characters"
420416
417#: ../lernid/lernidconfig.py:35
418msgid "Connect to a world of online tutorials quickly and easily."
419msgstr "Connect to a world of online tutorials quickly and easily."
420
421#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale421#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
422#: ../lernid/widgets/NativeChatroom.py:94422#: ../lernid/widgets/NativeChatroom.py:94
423#, python-format423#, python-format
424424
=== modified file 'po/en_GB.po'
--- po/en_GB.po 2012-08-28 07:10:45 +0000
+++ po/en_GB.po 2016-09-28 16:23:33 +0000
@@ -7,22 +7,23 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-06 10:00+0000\n"11"PO-Revision-Date: 2014-01-29 15:49+0000\n"
12"Last-Translator: jgraeme <Unknown>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: English (United Kingdom) <en_GB@li.org>\n"13"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
23msgstr ""23msgstr ""
24"Launchpad Contributions:\n"24"Launchpad Contributions:\n"
25" Daniel Bell https://launchpad.net/~danielbell\n"25" Daniel Bell https://launchpad.net/~danielbell\n"
26" John S. Gruber https://launchpad.net/~jsjgruber\n"
26" Jono Bacon https://launchpad.net/~jonobacon\n"27" Jono Bacon https://launchpad.net/~jonobacon\n"
27" Michael Budde https://launchpad.net/~mbudde\n"28" Michael Budde https://launchpad.net/~mbudde\n"
28" jgraeme https://launchpad.net/~jgraeme"29" jgraeme https://launchpad.net/~jgraeme"
@@ -50,10 +51,6 @@
50"instructor"51"instructor"
51msgstr ""52msgstr ""
5253
53#: ../lernid/lernidconfig.py:35
54msgid "Connect to a world of online tutorials quickly and easily."
55msgstr "Connect to a world of online tutorials quickly and easily."
56
57#. Translators: Local time representation54#. Translators: Local time representation
58#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8155#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
59#: ../lernid/Sessions.py:8656#: ../lernid/Sessions.py:86
@@ -146,8 +143,8 @@
146msgstr ""143msgstr ""
147144
148#: ../data/ui/LernidWindow.ui.h:5145#: ../data/ui/LernidWindow.ui.h:5
149msgid "Tweet current session"146msgid "Publicize with Gwibber"
150msgstr "Tweet current session"147msgstr ""
151148
152#: ../data/ui/LernidWindow.ui.h:6149#: ../data/ui/LernidWindow.ui.h:6
153msgid "_Edit"150msgid "_Edit"
@@ -415,6 +412,10 @@
415msgid "Nick can only contain English alphabet characters"412msgid "Nick can only contain English alphabet characters"
416msgstr "Nick can only contain English alphabet characters"413msgstr "Nick can only contain English alphabet characters"
417414
415#: ../lernid/lernidconfig.py:35
416msgid "Connect to a world of online tutorials quickly and easily."
417msgstr "Connect to a world of online tutorials quickly and easily."
418
418#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
419#: ../lernid/widgets/NativeChatroom.py:94420#: ../lernid/widgets/NativeChatroom.py:94
420#, python-format421#, python-format
421422
=== modified file 'po/eo.po'
--- po/eo.po 2012-08-28 07:10:45 +0000
+++ po/eo.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-02-06 17:37+0000\n"11"PO-Revision-Date: 2014-01-29 15:48+0000\n"
12"Last-Translator: Colin Dean <cad@cad.cx>\n"12"Last-Translator: Colin Dean <cad@cad.cx>\n"
13"Language-Team: Esperanto <eo@li.org>\n"13"Language-Team: Esperanto <eo@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -49,10 +49,6 @@
49"instructor"49"instructor"
50msgstr ""50msgstr ""
5151
52#: ../lernid/lernidconfig.py:35
53msgid "Connect to a world of online tutorials quickly and easily."
54msgstr "Konekti al mondo de enretaj seminarioj rapide kaj facile."
55
56#. Translators: Local time representation52#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -144,7 +140,7 @@
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:5142#: ../data/ui/LernidWindow.ui.h:5
147msgid "Tweet current session"143msgid "Publicize with Gwibber"
148msgstr ""144msgstr ""
149145
150#: ../data/ui/LernidWindow.ui.h:6146#: ../data/ui/LernidWindow.ui.h:6
@@ -413,6 +409,10 @@
413msgid "Nick can only contain English alphabet characters"409msgid "Nick can only contain English alphabet characters"
414msgstr ""410msgstr ""
415411
412#: ../lernid/lernidconfig.py:35
413msgid "Connect to a world of online tutorials quickly and easily."
414msgstr "Konekti al mondo de enretaj seminarioj rapide kaj facile."
415
416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
417#: ../lernid/widgets/NativeChatroom.py:94417#: ../lernid/widgets/NativeChatroom.py:94
418#, python-format418#, python-format
419419
=== modified file 'po/es.po'
--- po/es.po 2012-11-07 04:52:53 +0000
+++ po/es.po 2016-09-28 16:23:33 +0000
@@ -7,22 +7,22 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-11-06 18:03+0000\n"11"PO-Revision-Date: 2014-01-29 15:44+0000\n"
12"Last-Translator: Adolfo Jayme Barrientos <fitoschido@gmail.com>\n"12"Last-Translator: Adolfo Jayme <fitoschido@gmail.com>\n"
13"Language-Team: Spanish <es@li.org>\n"13"Language-Team: Spanish <es@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-11-07 04:52+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 16232)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
23msgstr ""23msgstr ""
24"Launchpad Contributions:\n"24"Launchpad Contributions:\n"
25" Adolfo Jayme Barrientos https://launchpad.net/~fitoschido\n"25" Adolfo Jayme https://launchpad.net/~fitoschido\n"
26" Alfonso de Cala https://launchpad.net/~alfem\n"26" Alfonso de Cala https://launchpad.net/~alfem\n"
27" Angel Abad https://launchpad.net/~angelabad\n"27" Angel Abad https://launchpad.net/~angelabad\n"
28" DiegoJ https://launchpad.net/~diegojromerolopez\n"28" DiegoJ https://launchpad.net/~diegojromerolopez\n"
@@ -36,7 +36,7 @@
36" Kamus https://launchpad.net/~kamus\n"36" Kamus https://launchpad.net/~kamus\n"
37" Leandro Gómez https://launchpad.net/~leogg\n"37" Leandro Gómez https://launchpad.net/~leogg\n"
38" Monkey https://launchpad.net/~monkey-libre\n"38" Monkey https://launchpad.net/~monkey-libre\n"
39" hhlp https://launchpad.net/~hhlp"39" hhlp https://launchpad.net/~hhlp-deactivatedaccount"
4040
41#: ../data/ui/PasswordDialog.ui.h:141#: ../data/ui/PasswordDialog.ui.h:1
42msgid "Invalid password"42msgid "Invalid password"
@@ -62,10 +62,6 @@
62msgstr ""62msgstr ""
63"«PREGUNTA:» redirige su pregunta al aula para que el instructor la responda"63"«PREGUNTA:» redirige su pregunta al aula para que el instructor la responda"
6464
65#: ../lernid/lernidconfig.py:35
66msgid "Connect to a world of online tutorials quickly and easily."
67msgstr "Conéctese rápida y fácilmente a un mundo de tutoriales en línea."
68
69#. Translators: Local time representation65#. Translators: Local time representation
70#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8166#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
71#: ../lernid/Sessions.py:8667#: ../lernid/Sessions.py:86
@@ -160,8 +156,8 @@
160msgstr "Abrir _URL en Lernid…"156msgstr "Abrir _URL en Lernid…"
161157
162#: ../data/ui/LernidWindow.ui.h:5158#: ../data/ui/LernidWindow.ui.h:5
163msgid "Tweet current session"159msgid "Publicize with Gwibber"
164msgstr "Anunciar en twitter la sesión actual"160msgstr ""
165161
166#: ../data/ui/LernidWindow.ui.h:6162#: ../data/ui/LernidWindow.ui.h:6
167msgid "_Edit"163msgid "_Edit"
@@ -439,6 +435,10 @@
439msgid "Nick can only contain English alphabet characters"435msgid "Nick can only contain English alphabet characters"
440msgstr "El apodo sólo puede contener caracteres del alfabeto inglés"436msgstr "El apodo sólo puede contener caracteres del alfabeto inglés"
441437
438#: ../lernid/lernidconfig.py:35
439msgid "Connect to a world of online tutorials quickly and easily."
440msgstr "Conéctese rápida y fácilmente a un mundo de tutoriales en línea."
441
442#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale442#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
443#: ../lernid/widgets/NativeChatroom.py:94443#: ../lernid/widgets/NativeChatroom.py:94
444#, python-format444#, python-format
445445
=== modified file 'po/es_AR.po'
--- po/es_AR.po 2012-08-28 07:10:45 +0000
+++ po/es_AR.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-10 06:06+0000\n"11"PO-Revision-Date: 2009-12-10 06:06+0000\n"
12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
13"Language-Team: Spanish (Argentina) <es_AR@li.org>\n"13"Language-Team: Spanish (Argentina) <es_AR@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -45,10 +45,6 @@
45"instructor"45"instructor"
46msgstr ""46msgstr ""
4747
48#: ../lernid/lernidconfig.py:35
49msgid "Connect to a world of online tutorials quickly and easily."
50msgstr ""
51
52#. Translators: Local time representation48#. Translators: Local time representation
53#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8149#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
54#: ../lernid/Sessions.py:8650#: ../lernid/Sessions.py:86
@@ -140,7 +136,7 @@
140msgstr ""136msgstr ""
141137
142#: ../data/ui/LernidWindow.ui.h:5138#: ../data/ui/LernidWindow.ui.h:5
143msgid "Tweet current session"139msgid "Publicize with Gwibber"
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:6142#: ../data/ui/LernidWindow.ui.h:6
@@ -409,6 +405,10 @@
409msgid "Nick can only contain English alphabet characters"405msgid "Nick can only contain English alphabet characters"
410msgstr ""406msgstr ""
411407
408#: ../lernid/lernidconfig.py:35
409msgid "Connect to a world of online tutorials quickly and easily."
410msgstr ""
411
412#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale412#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
413#: ../lernid/widgets/NativeChatroom.py:94413#: ../lernid/widgets/NativeChatroom.py:94
414#, python-format414#, python-format
415415
=== modified file 'po/eu.po'
--- po/eu.po 2012-08-28 07:10:45 +0000
+++ po/eu.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: Oier Mees <oier89rider@gmail.com>\n"9"Report-Msgid-Bugs-To: Oier Mees <oier89rider@gmail.com>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: LANGUAGE <LL@li.org>\n"13"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:45+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -48,10 +48,6 @@
48"instructor"48"instructor"
49msgstr ""49msgstr ""
5050
51#: ../lernid/lernidconfig.py:35
52msgid "Connect to a world of online tutorials quickly and easily."
53msgstr "Online tutorialen mundura modu azkar eta errazean konektatu zaitez."
54
55#. Translators: Local time representation51#. Translators: Local time representation
56#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8152#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
57#: ../lernid/Sessions.py:8653#: ../lernid/Sessions.py:86
@@ -143,8 +139,8 @@
143msgstr ""139msgstr ""
144140
145#: ../data/ui/LernidWindow.ui.h:5141#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"142msgid "Publicize with Gwibber"
147msgstr "Uneko saioa twiteatu"143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:6145#: ../data/ui/LernidWindow.ui.h:6
150msgid "_Edit"146msgid "_Edit"
@@ -412,6 +408,10 @@
412msgid "Nick can only contain English alphabet characters"408msgid "Nick can only contain English alphabet characters"
413msgstr "Ezizenak alfabeto ingelesko karaktereak bakarrik eduki ditzake"409msgstr "Ezizenak alfabeto ingelesko karaktereak bakarrik eduki ditzake"
414410
411#: ../lernid/lernidconfig.py:35
412msgid "Connect to a world of online tutorials quickly and easily."
413msgstr "Online tutorialen mundura modu azkar eta errazean konektatu zaitez."
414
415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
416#: ../lernid/widgets/NativeChatroom.py:94416#: ../lernid/widgets/NativeChatroom.py:94
417#, python-format417#, python-format
418418
=== modified file 'po/fi.po'
--- po/fi.po 2012-08-28 07:10:45 +0000
+++ po/fi.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-11 06:43+0000\n"11"PO-Revision-Date: 2009-12-11 06:43+0000\n"
12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
13"Language-Team: Finnish <fi@li.org>\n"13"Language-Team: Finnish <fi@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -46,10 +46,6 @@
46"instructor"46"instructor"
47msgstr ""47msgstr ""
4848
49#: ../lernid/lernidconfig.py:35
50msgid "Connect to a world of online tutorials quickly and easily."
51msgstr "Tutustu verkko-ohjeiden maailmaan nopeasti ja helposti."
52
53#. Translators: Local time representation49#. Translators: Local time representation
54#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8150#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
55#: ../lernid/Sessions.py:8651#: ../lernid/Sessions.py:86
@@ -141,7 +137,7 @@
141msgstr ""137msgstr ""
142138
143#: ../data/ui/LernidWindow.ui.h:5139#: ../data/ui/LernidWindow.ui.h:5
144msgid "Tweet current session"140msgid "Publicize with Gwibber"
145msgstr ""141msgstr ""
146142
147#: ../data/ui/LernidWindow.ui.h:6143#: ../data/ui/LernidWindow.ui.h:6
@@ -410,6 +406,10 @@
410msgid "Nick can only contain English alphabet characters"406msgid "Nick can only contain English alphabet characters"
411msgstr ""407msgstr ""
412408
409#: ../lernid/lernidconfig.py:35
410msgid "Connect to a world of online tutorials quickly and easily."
411msgstr "Tutustu verkko-ohjeiden maailmaan nopeasti ja helposti."
412
413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
414#: ../lernid/widgets/NativeChatroom.py:94414#: ../lernid/widgets/NativeChatroom.py:94
415#, python-format415#, python-format
416416
=== modified file 'po/fil.po'
--- po/fil.po 2012-08-28 07:10:45 +0000
+++ po/fil.po 2016-09-28 16:23:33 +0000
@@ -7,22 +7,23 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-11 06:27+0000\n"11"PO-Revision-Date: 2014-01-29 15:44+0000\n"
12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: Filipino <fil@li.org>\n"13"Language-Team: Filipino <fil@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n > 1;\n"17"Plural-Forms: nplurals=2; plural=n > 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
23msgstr ""23msgstr ""
24"Launchpad Contributions:\n"24"Launchpad Contributions:\n"
25" Jerome S. Gotangco https://launchpad.net/~jsgotangco"25" Jerome S. Gotangco https://launchpad.net/~jsgotangco\n"
26" John S. Gruber https://launchpad.net/~jsjgruber"
2627
27#: ../data/ui/PasswordDialog.ui.h:128#: ../data/ui/PasswordDialog.ui.h:1
28msgid "Invalid password"29msgid "Invalid password"
@@ -45,10 +46,6 @@
45"instructor"46"instructor"
46msgstr ""47msgstr ""
4748
48#: ../lernid/lernidconfig.py:35
49msgid "Connect to a world of online tutorials quickly and easily."
50msgstr ""
51
52#. Translators: Local time representation49#. Translators: Local time representation
53#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8150#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
54#: ../lernid/Sessions.py:8651#: ../lernid/Sessions.py:86
@@ -140,7 +137,7 @@
140msgstr ""137msgstr ""
141138
142#: ../data/ui/LernidWindow.ui.h:5139#: ../data/ui/LernidWindow.ui.h:5
143msgid "Tweet current session"140msgid "Publicize with Gwibber"
144msgstr ""141msgstr ""
145142
146#: ../data/ui/LernidWindow.ui.h:6143#: ../data/ui/LernidWindow.ui.h:6
@@ -409,6 +406,10 @@
409msgid "Nick can only contain English alphabet characters"406msgid "Nick can only contain English alphabet characters"
410msgstr ""407msgstr ""
411408
409#: ../lernid/lernidconfig.py:35
410msgid "Connect to a world of online tutorials quickly and easily."
411msgstr ""
412
412#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
413#: ../lernid/widgets/NativeChatroom.py:94414#: ../lernid/widgets/NativeChatroom.py:94
414#, python-format415#, python-format
415416
=== modified file 'po/fr.po'
--- po/fr.po 2012-08-28 07:10:45 +0000
+++ po/fr.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 16:39+0000\n"11"PO-Revision-Date: 2014-01-29 15:49+0000\n"
12"Last-Translator: Emilien Klein <emilien+ubuntu@klein.st>\n"12"Last-Translator: Emilien Klein <emilien+ubuntu@klein.st>\n"
13"Language-Team: French <fr@li.org>\n"13"Language-Team: French <fr@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n > 1;\n"17"Plural-Forms: nplurals=2; plural=n > 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -25,7 +25,7 @@
25" Emilien Klein https://launchpad.net/~emilien-klein\n"25" Emilien Klein https://launchpad.net/~emilien-klein\n"
26" Emmanuel Sunyer https://launchpad.net/~esunyer\n"26" Emmanuel Sunyer https://launchpad.net/~esunyer\n"
27" Etienne Savard https://launchpad.net/~esavard\n"27" Etienne Savard https://launchpad.net/~esavard\n"
28" Géry Debongnie https://launchpad.net/~gery-debongnie-deactivatedaccount\n"28" Géry Debongnie https://launchpad.net/~gery-debongnie\n"
29" Nicolas Delvaux https://launchpad.net/~malizor\n"29" Nicolas Delvaux https://launchpad.net/~malizor\n"
30" Pierre Slamich https://launchpad.net/~pierre-slamich\n"30" Pierre Slamich https://launchpad.net/~pierre-slamich\n"
31" dupoxy https://launchpad.net/~duperray-olivier"31" dupoxy https://launchpad.net/~duperray-olivier"
@@ -53,11 +53,6 @@
53"instructor"53"instructor"
54msgstr ""54msgstr ""
5555
56#: ../lernid/lernidconfig.py:35
57msgid "Connect to a world of online tutorials quickly and easily."
58msgstr ""
59"Connectez-vous rapidement et simplement à un monde de tutoriaux en ligne."
60
61#. Translators: Local time representation56#. Translators: Local time representation
62#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8157#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
63#: ../lernid/Sessions.py:8658#: ../lernid/Sessions.py:86
@@ -153,8 +148,8 @@
153msgstr ""148msgstr ""
154149
155#: ../data/ui/LernidWindow.ui.h:5150#: ../data/ui/LernidWindow.ui.h:5
156msgid "Tweet current session"151msgid "Publicize with Gwibber"
157msgstr "Tweeter la session courante"152msgstr ""
158153
159#: ../data/ui/LernidWindow.ui.h:6154#: ../data/ui/LernidWindow.ui.h:6
160msgid "_Edit"155msgid "_Edit"
@@ -423,6 +418,11 @@
423msgstr ""418msgstr ""
424"Le pseudonyme ne peut contenir que des caractères de l'alphabet anglais"419"Le pseudonyme ne peut contenir que des caractères de l'alphabet anglais"
425420
421#: ../lernid/lernidconfig.py:35
422msgid "Connect to a world of online tutorials quickly and easily."
423msgstr ""
424"Connectez-vous rapidement et simplement à un monde de tutoriaux en ligne."
425
426#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale426#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
427#: ../lernid/widgets/NativeChatroom.py:94427#: ../lernid/widgets/NativeChatroom.py:94
428#, python-format428#, python-format
429429
=== modified file 'po/he.po'
--- po/he.po 2012-08-28 07:10:45 +0000
+++ po/he.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: Yaron <sh.yaron@gmail.com>\n"12"Last-Translator: Yaron <sh.yaron@gmail.com>\n"
13"Language-Team: Hebrew <he@li.org>\n"13"Language-Team: Hebrew <he@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -52,10 +52,6 @@
52"instructor"52"instructor"
53msgstr ""53msgstr ""
5454
55#: ../lernid/lernidconfig.py:35
56msgid "Connect to a world of online tutorials quickly and easily."
57msgstr "התחברות לעולם של מדריכים מקוונים בקלות ובמהירות."
58
59#. Translators: Local time representation55#. Translators: Local time representation
60#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8156#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
61#: ../lernid/Sessions.py:8657#: ../lernid/Sessions.py:86
@@ -147,8 +143,8 @@
147msgstr ""143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:5145#: ../data/ui/LernidWindow.ui.h:5
150msgid "Tweet current session"146msgid "Publicize with Gwibber"
151msgstr "ציוץ המפגש הנוכחי"147msgstr ""
152148
153#: ../data/ui/LernidWindow.ui.h:6149#: ../data/ui/LernidWindow.ui.h:6
154msgid "_Edit"150msgid "_Edit"
@@ -416,6 +412,10 @@
416msgid "Nick can only contain English alphabet characters"412msgid "Nick can only contain English alphabet characters"
417msgstr "כינוי יכול להכיל אותיות לטיניות (באנגלית) בלבד"413msgstr "כינוי יכול להכיל אותיות לטיניות (באנגלית) בלבד"
418414
415#: ../lernid/lernidconfig.py:35
416msgid "Connect to a world of online tutorials quickly and easily."
417msgstr "התחברות לעולם של מדריכים מקוונים בקלות ובמהירות."
418
419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
420#: ../lernid/widgets/NativeChatroom.py:94420#: ../lernid/widgets/NativeChatroom.py:94
421#, python-format421#, python-format
422422
=== modified file 'po/hr.po'
--- po/hr.po 2012-08-28 07:10:45 +0000
+++ po/hr.po 2016-09-28 16:23:33 +0000
@@ -7,8 +7,8 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:46+0000\n"
12"Last-Translator: gogo <trebelnik2@gmail.com>\n"12"Last-Translator: gogo <trebelnik2@gmail.com>\n"
13"Language-Team: Croatian <hr@li.org>\n"13"Language-Team: Croatian <hr@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
@@ -16,8 +16,8 @@
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "17"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
18"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"18"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
@@ -47,10 +47,6 @@
47"instructor"47"instructor"
48msgstr ""48msgstr ""
4949
50#: ../lernid/lernidconfig.py:35
51msgid "Connect to a world of online tutorials quickly and easily."
52msgstr "Povežite se u svijet on-line udžbenika brzo i jednostavno."
53
54#. Translators: Local time representation50#. Translators: Local time representation
55#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8151#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
56#: ../lernid/Sessions.py:8652#: ../lernid/Sessions.py:86
@@ -143,7 +139,7 @@
143msgstr ""139msgstr ""
144140
145#: ../data/ui/LernidWindow.ui.h:5141#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"142msgid "Publicize with Gwibber"
147msgstr ""143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:6145#: ../data/ui/LernidWindow.ui.h:6
@@ -413,6 +409,10 @@
413msgid "Nick can only contain English alphabet characters"409msgid "Nick can only contain English alphabet characters"
414msgstr "Nick može sadržavati samo slova Engleske abecede"410msgstr "Nick može sadržavati samo slova Engleske abecede"
415411
412#: ../lernid/lernidconfig.py:35
413msgid "Connect to a world of online tutorials quickly and easily."
414msgstr "Povežite se u svijet on-line udžbenika brzo i jednostavno."
415
416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
417#: ../lernid/widgets/NativeChatroom.py:94417#: ../lernid/widgets/NativeChatroom.py:94
418#, python-format418#, python-format
419419
=== modified file 'po/hu.po'
--- po/hu.po 2013-02-28 17:36:17 +0000
+++ po/hu.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-09-17 06:28+0000\n"11"PO-Revision-Date: 2010-09-17 06:28+0000\n"
12"Last-Translator: Richard Somlói <ricsipontaz@gmail.com>\n"12"Last-Translator: Richard Somlói <ricsipontaz@gmail.com>\n"
13"Language-Team: Hungarian <hu@li.org>\n"13"Language-Team: Hungarian <hu@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -49,10 +49,6 @@
49"instructor"49"instructor"
50msgstr ""50msgstr ""
5151
52#: ../lernid/lernidconfig.py:35
53msgid "Connect to a world of online tutorials quickly and easily."
54msgstr "Egyszerű és gyors kapcsolat az online oktatások világához."
55
56#. Translators: Local time representation52#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -145,8 +141,8 @@
145msgstr ""141msgstr ""
146142
147#: ../data/ui/LernidWindow.ui.h:5143#: ../data/ui/LernidWindow.ui.h:5
148msgid "Tweet current session"144msgid "Publicize with Gwibber"
149msgstr "Mikrobloggolás az előadásról"145msgstr ""
150146
151#: ../data/ui/LernidWindow.ui.h:6147#: ../data/ui/LernidWindow.ui.h:6
152msgid "_Edit"148msgid "_Edit"
@@ -416,6 +412,10 @@
416msgid "Nick can only contain English alphabet characters"412msgid "Nick can only contain English alphabet characters"
417msgstr "A becenév csak az angol nyelv karaktereit tartalmazhatja"413msgstr "A becenév csak az angol nyelv karaktereit tartalmazhatja"
418414
415#: ../lernid/lernidconfig.py:35
416msgid "Connect to a world of online tutorials quickly and easily."
417msgstr "Egyszerű és gyors kapcsolat az online oktatások világához."
418
419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
420#: ../lernid/widgets/NativeChatroom.py:94420#: ../lernid/widgets/NativeChatroom.py:94
421#, python-format421#, python-format
422422
=== modified file 'po/id.po'
--- po/id.po 2013-02-28 17:36:17 +0000
+++ po/id.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-01-27 06:00+0000\n"11"PO-Revision-Date: 2010-01-27 06:00+0000\n"
12"Last-Translator: Jono Bacon <jono@ubuntu.com>\n"12"Last-Translator: Jono Bacon <jono@ubuntu.com>\n"
13"Language-Team: Indonesian <id@li.org>\n"13"Language-Team: Indonesian <id@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=1; plural=0;\n"17"Plural-Forms: nplurals=1; plural=0;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -47,10 +47,6 @@
47"instructor"47"instructor"
48msgstr ""48msgstr ""
4949
50#: ../lernid/lernidconfig.py:35
51msgid "Connect to a world of online tutorials quickly and easily."
52msgstr "Tersambung ke dunia tutorial dalam talian dengan cepat dan mudah."
53
54#. Translators: Local time representation50#. Translators: Local time representation
55#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8151#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
56#: ../lernid/Sessions.py:8652#: ../lernid/Sessions.py:86
@@ -142,7 +138,7 @@
142msgstr ""138msgstr ""
143139
144#: ../data/ui/LernidWindow.ui.h:5140#: ../data/ui/LernidWindow.ui.h:5
145msgid "Tweet current session"141msgid "Publicize with Gwibber"
146msgstr ""142msgstr ""
147143
148#: ../data/ui/LernidWindow.ui.h:6144#: ../data/ui/LernidWindow.ui.h:6
@@ -411,6 +407,10 @@
411msgid "Nick can only contain English alphabet characters"407msgid "Nick can only contain English alphabet characters"
412msgstr ""408msgstr ""
413409
410#: ../lernid/lernidconfig.py:35
411msgid "Connect to a world of online tutorials quickly and easily."
412msgstr "Tersambung ke dunia tutorial dalam talian dengan cepat dan mudah."
413
414#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale414#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
415#: ../lernid/widgets/NativeChatroom.py:94415#: ../lernid/widgets/NativeChatroom.py:94
416#, python-format416#, python-format
417417
=== modified file 'po/it.po'
--- po/it.po 2013-06-27 05:45:00 +0000
+++ po/it.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2013-06-26 08:58+0000\n"11"PO-Revision-Date: 2014-01-29 15:48+0000\n"
12"Last-Translator: Claudio Arseni <claudio.arseni@gmail.com>\n"12"Last-Translator: Claudio Arseni <claudio.arseni@gmail.com>\n"
13"Language-Team: Italian <it@li.org>\n"13"Language-Team: Italian <it@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2013-06-27 05:45+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 16681)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -56,10 +56,6 @@
56"\"DOMANDA:\" indirizza le domande alla finestra della lezione per poter "56"\"DOMANDA:\" indirizza le domande alla finestra della lezione per poter "
57"avere una risposta dall'istruttore"57"avere una risposta dall'istruttore"
5858
59#: ../lernid/lernidconfig.py:35
60msgid "Connect to a world of online tutorials quickly and easily."
61msgstr "Connette velocemente e facilmente a un mondo di lezioni in linea."
62
63#. Translators: Local time representation59#. Translators: Local time representation
64#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8160#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
65#: ../lernid/Sessions.py:8661#: ../lernid/Sessions.py:86
@@ -154,8 +150,8 @@
154msgstr "Apri gli _URL in Lernid..."150msgstr "Apri gli _URL in Lernid..."
155151
156#: ../data/ui/LernidWindow.ui.h:5152#: ../data/ui/LernidWindow.ui.h:5
157msgid "Tweet current session"153msgid "Publicize with Gwibber"
158msgstr "Pubblica un tweet sulla sessione corrente"154msgstr ""
159155
160#: ../data/ui/LernidWindow.ui.h:6156#: ../data/ui/LernidWindow.ui.h:6
161msgid "_Edit"157msgid "_Edit"
@@ -433,6 +429,10 @@
433msgid "Nick can only contain English alphabet characters"429msgid "Nick can only contain English alphabet characters"
434msgstr "Il soprannome puo soltanto contenere caratteri dell'alfabeto inglese"430msgstr "Il soprannome puo soltanto contenere caratteri dell'alfabeto inglese"
435431
432#: ../lernid/lernidconfig.py:35
433msgid "Connect to a world of online tutorials quickly and easily."
434msgstr "Connette velocemente e facilmente a un mondo di lezioni in linea."
435
436#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale436#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
437#: ../lernid/widgets/NativeChatroom.py:94437#: ../lernid/widgets/NativeChatroom.py:94
438#, python-format438#, python-format
439439
=== modified file 'po/jbo.po'
--- po/jbo.po 2012-08-28 07:10:45 +0000
+++ po/jbo.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-11 06:43+0000\n"11"PO-Revision-Date: 2009-12-11 06:43+0000\n"
12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
13"Language-Team: Lojban <jbo@li.org>\n"13"Language-Team: Lojban <jbo@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=1; plural=0;\n"17"Plural-Forms: nplurals=1; plural=0;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -45,10 +45,6 @@
45"instructor"45"instructor"
46msgstr ""46msgstr ""
4747
48#: ../lernid/lernidconfig.py:35
49msgid "Connect to a world of online tutorials quickly and easily."
50msgstr ""
51
52#. Translators: Local time representation48#. Translators: Local time representation
53#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8149#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
54#: ../lernid/Sessions.py:8650#: ../lernid/Sessions.py:86
@@ -140,7 +136,7 @@
140msgstr ""136msgstr ""
141137
142#: ../data/ui/LernidWindow.ui.h:5138#: ../data/ui/LernidWindow.ui.h:5
143msgid "Tweet current session"139msgid "Publicize with Gwibber"
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:6142#: ../data/ui/LernidWindow.ui.h:6
@@ -409,6 +405,10 @@
409msgid "Nick can only contain English alphabet characters"405msgid "Nick can only contain English alphabet characters"
410msgstr ""406msgstr ""
411407
408#: ../lernid/lernidconfig.py:35
409msgid "Connect to a world of online tutorials quickly and easily."
410msgstr ""
411
412#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale412#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
413#: ../lernid/widgets/NativeChatroom.py:94413#: ../lernid/widgets/NativeChatroom.py:94
414#, python-format414#, python-format
415415
=== modified file 'po/ms.po'
--- po/ms.po 2012-08-28 07:10:45 +0000
+++ po/ms.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:49+0000\n"
12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: Malay <ms@li.org>\n"13"Language-Team: Malay <ms@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -49,10 +49,6 @@
49"instructor"49"instructor"
50msgstr ""50msgstr ""
5151
52#: ../lernid/lernidconfig.py:35
53msgid "Connect to a world of online tutorials quickly and easily."
54msgstr "Sambung ke dunia tutorial atas-talian yang pantas dan mudah."
55
56#. Translators: Local time representation52#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -145,8 +141,8 @@
145msgstr ""141msgstr ""
146142
147#: ../data/ui/LernidWindow.ui.h:5143#: ../data/ui/LernidWindow.ui.h:5
148msgid "Tweet current session"144msgid "Publicize with Gwibber"
149msgstr "Tweet sesi semasa"145msgstr ""
150146
151#: ../data/ui/LernidWindow.ui.h:6147#: ../data/ui/LernidWindow.ui.h:6
152msgid "_Edit"148msgid "_Edit"
@@ -414,6 +410,10 @@
414msgid "Nick can only contain English alphabet characters"410msgid "Nick can only contain English alphabet characters"
415msgstr "Gelaran hanya boleh mengandungi aksara abjad Inggeris"411msgstr "Gelaran hanya boleh mengandungi aksara abjad Inggeris"
416412
413#: ../lernid/lernidconfig.py:35
414msgid "Connect to a world of online tutorials quickly and easily."
415msgstr "Sambung ke dunia tutorial atas-talian yang pantas dan mudah."
416
417#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale417#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
418#: ../lernid/widgets/NativeChatroom.py:94418#: ../lernid/widgets/NativeChatroom.py:94
419#, python-format419#, python-format
420420
=== modified file 'po/nb.po'
--- po/nb.po 2012-08-28 07:10:45 +0000
+++ po/nb.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: Norwegian Bokmal <nb@li.org>\n"13"Language-Team: Norwegian Bokmal <nb@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -49,10 +49,6 @@
49"instructor"49"instructor"
50msgstr ""50msgstr ""
5151
52#: ../lernid/lernidconfig.py:35
53msgid "Connect to a world of online tutorials quickly and easily."
54msgstr "Koble kjapt og enkelt til en verden av online hjelp."
55
56#. Translators: Local time representation52#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -144,7 +140,7 @@
144msgstr ""140msgstr ""
145141
146#: ../data/ui/LernidWindow.ui.h:5142#: ../data/ui/LernidWindow.ui.h:5
147msgid "Tweet current session"143msgid "Publicize with Gwibber"
148msgstr ""144msgstr ""
149145
150#: ../data/ui/LernidWindow.ui.h:6146#: ../data/ui/LernidWindow.ui.h:6
@@ -413,6 +409,10 @@
413msgid "Nick can only contain English alphabet characters"409msgid "Nick can only contain English alphabet characters"
414msgstr ""410msgstr ""
415411
412#: ../lernid/lernidconfig.py:35
413msgid "Connect to a world of online tutorials quickly and easily."
414msgstr "Koble kjapt og enkelt til en verden av online hjelp."
415
416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale416#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
417#: ../lernid/widgets/NativeChatroom.py:94417#: ../lernid/widgets/NativeChatroom.py:94
418#, python-format418#, python-format
419419
=== modified file 'po/nl.po'
--- po/nl.po 2012-08-28 07:10:45 +0000
+++ po/nl.po 2016-09-28 16:23:33 +0000
@@ -7,25 +7,25 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:47+0000\n"
12"Last-Translator: Sense Egbert Hofstede <u@sensehofstede.nl>\n"12"Last-Translator: Sense Egbert Hofstede <u@sensehofstede.nl>\n"
13"Language-Team: Dutch <nl@li.org>\n"13"Language-Team: Dutch <nl@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
23msgstr ""23msgstr ""
24"Launchpad Contributions:\n"24"Launchpad Contributions:\n"
25" Elco https://launchpad.net/~eajnab\n"25" Elco https://launchpad.net/~eajnab\n"
26" MarniX https://launchpad.net/~gsmx\n"
27" Sense Egbert Hofstede https://launchpad.net/~sense\n"26" Sense Egbert Hofstede https://launchpad.net/~sense\n"
28" cumulus007 https://launchpad.net/~cumulus-007"27" cumulus007 https://launchpad.net/~cumulus-007\n"
28" gsmx https://launchpad.net/~gsmx"
2929
30#: ../data/ui/PasswordDialog.ui.h:130#: ../data/ui/PasswordDialog.ui.h:1
31msgid "Invalid password"31msgid "Invalid password"
@@ -50,10 +50,6 @@
50"instructor"50"instructor"
51msgstr ""51msgstr ""
5252
53#: ../lernid/lernidconfig.py:35
54msgid "Connect to a world of online tutorials quickly and easily."
55msgstr "Verbind gemakkelijk en snel met een wereld van online lessen."
56
57#. Translators: Local time representation53#. Translators: Local time representation
58#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8154#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
59#: ../lernid/Sessions.py:8655#: ../lernid/Sessions.py:86
@@ -146,8 +142,8 @@
146msgstr ""142msgstr ""
147143
148#: ../data/ui/LernidWindow.ui.h:5144#: ../data/ui/LernidWindow.ui.h:5
149msgid "Tweet current session"145msgid "Publicize with Gwibber"
150msgstr "Huidige sessie tweeten"146msgstr ""
151147
152#: ../data/ui/LernidWindow.ui.h:6148#: ../data/ui/LernidWindow.ui.h:6
153msgid "_Edit"149msgid "_Edit"
@@ -415,6 +411,10 @@
415msgid "Nick can only contain English alphabet characters"411msgid "Nick can only contain English alphabet characters"
416msgstr "Schermnaam kan alleen Engelse tekens bevatten"412msgstr "Schermnaam kan alleen Engelse tekens bevatten"
417413
414#: ../lernid/lernidconfig.py:35
415msgid "Connect to a world of online tutorials quickly and easily."
416msgstr "Verbind gemakkelijk en snel met een wereld van online lessen."
417
418#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale418#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
419#: ../lernid/widgets/NativeChatroom.py:94419#: ../lernid/widgets/NativeChatroom.py:94
420#, python-format420#, python-format
421421
=== modified file 'po/oc.po'
--- po/oc.po 2012-08-28 07:10:45 +0000
+++ po/oc.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2012-08-19 20:01+0000\n"
12"Last-Translator: Cédric VALMARY (Tot en òc) <cvalmary@yahoo.fr>\n"12"Last-Translator: Cédric VALMARY (Tot en òc) <cvalmary@yahoo.fr>\n"
13"Language-Team: Occitan (post 1500) <oc@li.org>\n"13"Language-Team: Occitan (post 1500) <oc@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n > 1;\n"17"Plural-Forms: nplurals=2; plural=n > 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -47,10 +47,6 @@
47"instructor"47"instructor"
48msgstr ""48msgstr ""
4949
50#: ../lernid/lernidconfig.py:35
51msgid "Connect to a world of online tutorials quickly and easily."
52msgstr ""
53
54#. Translators: Local time representation50#. Translators: Local time representation
55#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8151#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
56#: ../lernid/Sessions.py:8652#: ../lernid/Sessions.py:86
@@ -143,8 +139,8 @@
143msgstr ""139msgstr ""
144140
145#: ../data/ui/LernidWindow.ui.h:5141#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"142msgid "Publicize with Gwibber"
147msgstr "Tweetar la sesilha correnta"143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:6145#: ../data/ui/LernidWindow.ui.h:6
150msgid "_Edit"146msgid "_Edit"
@@ -412,6 +408,10 @@
412msgid "Nick can only contain English alphabet characters"408msgid "Nick can only contain English alphabet characters"
413msgstr ""409msgstr ""
414410
411#: ../lernid/lernidconfig.py:35
412msgid "Connect to a world of online tutorials quickly and easily."
413msgstr ""
414
415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
416#: ../lernid/widgets/NativeChatroom.py:94416#: ../lernid/widgets/NativeChatroom.py:94
417#, python-format417#, python-format
418418
=== modified file 'po/pl.po'
--- po/pl.po 2013-02-28 17:36:17 +0000
+++ po/pl.po 2016-09-28 16:23:33 +0000
@@ -7,23 +7,23 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: \n"9"Report-Msgid-Bugs-To: \n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 15:46+0000\n"11"PO-Revision-Date: 2010-08-02 15:46+0000\n"
12"Last-Translator: mmiicc <mpredotka@gmail.com>\n"12"Last-Translator: Michal Predotka <mpredotka@gmail.com>\n"
13"Language-Team: Polish <pl@li.org>\n"13"Language-Team: Polish <pl@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "17"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18"|| n%100>=20) ? 1 : 2;\n"18"|| n%100>=20) ? 1 : 2;\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
24msgstr ""24msgstr ""
25"Launchpad Contributions:\n"25"Launchpad Contributions:\n"
26" mmiicc https://launchpad.net/~mpredotka\n"26" Michal Predotka https://launchpad.net/~mpredotka\n"
27" Łukasz Jernaś https://launchpad.net/~deejay1"27" Łukasz Jernaś https://launchpad.net/~deejay1"
2828
29#: ../data/ui/PasswordDialog.ui.h:129#: ../data/ui/PasswordDialog.ui.h:1
@@ -49,10 +49,6 @@
49"instructor"49"instructor"
50msgstr ""50msgstr ""
5151
52#: ../lernid/lernidconfig.py:35
53msgid "Connect to a world of online tutorials quickly and easily."
54msgstr "Proste i przyjemne łączenie się ze światem nauczania online."
55
56#. Translators: Local time representation52#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -145,8 +141,8 @@
145msgstr ""141msgstr ""
146142
147#: ../data/ui/LernidWindow.ui.h:5143#: ../data/ui/LernidWindow.ui.h:5
148msgid "Tweet current session"144msgid "Publicize with Gwibber"
149msgstr "Ogłoś bieżącą sesję"145msgstr ""
150146
151#: ../data/ui/LernidWindow.ui.h:6147#: ../data/ui/LernidWindow.ui.h:6
152msgid "_Edit"148msgid "_Edit"
@@ -417,6 +413,10 @@
417msgid "Nick can only contain English alphabet characters"413msgid "Nick can only contain English alphabet characters"
418msgstr "Pseudonim może zawierać jedynie znaki z angielskiego alfabetu."414msgstr "Pseudonim może zawierać jedynie znaki z angielskiego alfabetu."
419415
416#: ../lernid/lernidconfig.py:35
417msgid "Connect to a world of online tutorials quickly and easily."
418msgstr "Proste i przyjemne łączenie się ze światem nauczania online."
419
420#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale420#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
421#: ../lernid/widgets/NativeChatroom.py:94421#: ../lernid/widgets/NativeChatroom.py:94
422#, python-format422#, python-format
423423
=== modified file 'po/pt.po'
--- po/pt.po 2012-08-28 07:10:45 +0000
+++ po/pt.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-10 06:06+0000\n"11"PO-Revision-Date: 2009-12-10 06:06+0000\n"
12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
13"Language-Team: Portuguese <pt@li.org>\n"13"Language-Team: Portuguese <pt@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -43,10 +43,6 @@
43"instructor"43"instructor"
44msgstr ""44msgstr ""
4545
46#: ../lernid/lernidconfig.py:35
47msgid "Connect to a world of online tutorials quickly and easily."
48msgstr ""
49
50#. Translators: Local time representation46#. Translators: Local time representation
51#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8147#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
52#: ../lernid/Sessions.py:8648#: ../lernid/Sessions.py:86
@@ -138,7 +134,7 @@
138msgstr ""134msgstr ""
139135
140#: ../data/ui/LernidWindow.ui.h:5136#: ../data/ui/LernidWindow.ui.h:5
141msgid "Tweet current session"137msgid "Publicize with Gwibber"
142msgstr ""138msgstr ""
143139
144#: ../data/ui/LernidWindow.ui.h:6140#: ../data/ui/LernidWindow.ui.h:6
@@ -407,6 +403,10 @@
407msgid "Nick can only contain English alphabet characters"403msgid "Nick can only contain English alphabet characters"
408msgstr ""404msgstr ""
409405
406#: ../lernid/lernidconfig.py:35
407msgid "Connect to a world of online tutorials quickly and easily."
408msgstr ""
409
410#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale410#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
411#: ../lernid/widgets/NativeChatroom.py:94411#: ../lernid/widgets/NativeChatroom.py:94
412#, python-format412#, python-format
413413
=== modified file 'po/pt_BR.po'
--- po/pt_BR.po 2012-08-28 07:10:45 +0000
+++ po/pt_BR.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:49+0000\n"
12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"13"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n > 1;\n"17"Plural-Forms: nplurals=2; plural=n > 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -52,10 +52,6 @@
52"instructor"52"instructor"
53msgstr ""53msgstr ""
5454
55#: ../lernid/lernidconfig.py:35
56msgid "Connect to a world of online tutorials quickly and easily."
57msgstr "Conectar a um mundo de tutoriais online rápido e fácil."
58
59#. Translators: Local time representation55#. Translators: Local time representation
60#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8156#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
61#: ../lernid/Sessions.py:8657#: ../lernid/Sessions.py:86
@@ -149,8 +145,8 @@
149msgstr ""145msgstr ""
150146
151#: ../data/ui/LernidWindow.ui.h:5147#: ../data/ui/LernidWindow.ui.h:5
152msgid "Tweet current session"148msgid "Publicize with Gwibber"
153msgstr "Tweet a sessão atual"149msgstr ""
154150
155#: ../data/ui/LernidWindow.ui.h:6151#: ../data/ui/LernidWindow.ui.h:6
156msgid "_Edit"152msgid "_Edit"
@@ -418,6 +414,10 @@
418msgid "Nick can only contain English alphabet characters"414msgid "Nick can only contain English alphabet characters"
419msgstr "Apelido pode conter apenas caráctere alfabético do inglês"415msgstr "Apelido pode conter apenas caráctere alfabético do inglês"
420416
417#: ../lernid/lernidconfig.py:35
418msgid "Connect to a world of online tutorials quickly and easily."
419msgstr "Conectar a um mundo de tutoriais online rápido e fácil."
420
421#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale421#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
422#: ../lernid/widgets/NativeChatroom.py:94422#: ../lernid/widgets/NativeChatroom.py:94
423#, python-format423#, python-format
424424
=== modified file 'po/ro.po'
--- po/ro.po 2012-08-28 07:10:45 +0000
+++ po/ro.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-24 06:50+0000\n"11"PO-Revision-Date: 2009-12-24 06:50+0000\n"
12"Last-Translator: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>\n"12"Last-Translator: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>\n"
13"Language-Team: Romanian <ro@li.org>\n"13"Language-Team: Romanian <ro@li.org>\n"
@@ -16,8 +16,8 @@
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 "17"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 "
18"== 0) && (n != 0))) ? 2: 1));\n"18"== 0) && (n != 0))) ? 2: 1));\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
@@ -48,10 +48,6 @@
48"instructor"48"instructor"
49msgstr ""49msgstr ""
5050
51#: ../lernid/lernidconfig.py:35
52msgid "Connect to a world of online tutorials quickly and easily."
53msgstr "Conectați-vă ușor și rapid la o lume online de tutoriale."
54
55#. Translators: Local time representation51#. Translators: Local time representation
56#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8152#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
57#: ../lernid/Sessions.py:8653#: ../lernid/Sessions.py:86
@@ -143,7 +139,7 @@
143msgstr ""139msgstr ""
144140
145#: ../data/ui/LernidWindow.ui.h:5141#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"142msgid "Publicize with Gwibber"
147msgstr ""143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:6145#: ../data/ui/LernidWindow.ui.h:6
@@ -412,6 +408,10 @@
412msgid "Nick can only contain English alphabet characters"408msgid "Nick can only contain English alphabet characters"
413msgstr ""409msgstr ""
414410
411#: ../lernid/lernidconfig.py:35
412msgid "Connect to a world of online tutorials quickly and easily."
413msgstr "Conectați-vă ușor și rapid la o lume online de tutoriale."
414
415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
416#: ../lernid/widgets/NativeChatroom.py:94416#: ../lernid/widgets/NativeChatroom.py:94
417#, python-format417#, python-format
418418
=== modified file 'po/ru.po'
--- po/ru.po 2012-08-28 07:10:45 +0000
+++ po/ru.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 16:47+0000\n"11"PO-Revision-Date: 2010-08-02 16:47+0000\n"
12"Last-Translator: Алексей Капранов (Alex Kapranoff) <kapranoff@gmail.com>\n"12"Last-Translator: Алексей Капранов (Alex Kapranoff) <kapranoff@gmail.com>\n"
13"Language-Team: Russian <ru@li.org>\n"13"Language-Team: Russian <ru@li.org>\n"
@@ -16,8 +16,8 @@
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "17"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
18"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"18"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
@@ -51,10 +51,6 @@
51"instructor"51"instructor"
52msgstr ""52msgstr ""
5353
54#: ../lernid/lernidconfig.py:35
55msgid "Connect to a world of online tutorials quickly and easily."
56msgstr "Быстрый и простой вход в мир учебных пособий в Интернете"
57
58#. Translators: Local time representation54#. Translators: Local time representation
59#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8155#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
60#: ../lernid/Sessions.py:8656#: ../lernid/Sessions.py:86
@@ -147,8 +143,8 @@
147msgstr ""143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:5145#: ../data/ui/LernidWindow.ui.h:5
150msgid "Tweet current session"146msgid "Publicize with Gwibber"
151msgstr "Написать о сеансе в _Твиттер"147msgstr ""
152148
153#: ../data/ui/LernidWindow.ui.h:6149#: ../data/ui/LernidWindow.ui.h:6
154msgid "_Edit"150msgid "_Edit"
@@ -417,6 +413,10 @@
417msgid "Nick can only contain English alphabet characters"413msgid "Nick can only contain English alphabet characters"
418msgstr "Псевдоним должен состоять только из букв английского алфавита"414msgstr "Псевдоним должен состоять только из букв английского алфавита"
419415
416#: ../lernid/lernidconfig.py:35
417msgid "Connect to a world of online tutorials quickly and easily."
418msgstr "Быстрый и простой вход в мир учебных пособий в Интернете"
419
420#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale420#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
421#: ../lernid/widgets/NativeChatroom.py:94421#: ../lernid/widgets/NativeChatroom.py:94
422#, python-format422#, python-format
423423
=== modified file 'po/sl.po'
--- po/sl.po 2012-08-28 07:10:45 +0000
+++ po/sl.po 2016-09-28 16:23:33 +0000
@@ -7,17 +7,17 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-11-29 18:38+0000\n"11"PO-Revision-Date: 2010-11-29 18:38+0000\n"
12"Last-Translator: grofaty <grofaty@hotmail.com>\n"12"Last-Translator: grofaty <Unknown>\n"
13"Language-Team: Slovenian <sl@li.org>\n"13"Language-Team: Slovenian <sl@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || "17"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || "
18"n%100==4 ? 3 : 0);\n"18"n%100==4 ? 3 : 0);\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
@@ -48,10 +48,6 @@
48"instructor"48"instructor"
49msgstr ""49msgstr ""
5050
51#: ../lernid/lernidconfig.py:35
52msgid "Connect to a world of online tutorials quickly and easily."
53msgstr "Poveži se z navodili hitro in enostavno."
54
55#. Translators: Local time representation51#. Translators: Local time representation
56#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8152#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
57#: ../lernid/Sessions.py:8653#: ../lernid/Sessions.py:86
@@ -143,8 +139,8 @@
143msgstr ""139msgstr ""
144140
145#: ../data/ui/LernidWindow.ui.h:5141#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"142msgid "Publicize with Gwibber"
147msgstr "Pošlji trenutno sejo v Tweeter"143msgstr ""
148144
149#: ../data/ui/LernidWindow.ui.h:6145#: ../data/ui/LernidWindow.ui.h:6
150msgid "_Edit"146msgid "_Edit"
@@ -414,6 +410,10 @@
414msgid "Nick can only contain English alphabet characters"410msgid "Nick can only contain English alphabet characters"
415msgstr "Vzdevek lahko vsebuje samo angleške črke abecede"411msgstr "Vzdevek lahko vsebuje samo angleške črke abecede"
416412
413#: ../lernid/lernidconfig.py:35
414msgid "Connect to a world of online tutorials quickly and easily."
415msgstr "Poveži se z navodili hitro in enostavno."
416
417#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale417#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
418#: ../lernid/widgets/NativeChatroom.py:94418#: ../lernid/widgets/NativeChatroom.py:94
419#, python-format419#, python-format
420420
=== modified file 'po/sv.po'
--- po/sv.po 2012-08-28 07:10:45 +0000
+++ po/sv.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2012-08-19 20:01+0000\n"11"PO-Revision-Date: 2014-01-29 15:48+0000\n"
12"Last-Translator: Daniel Nylander <yeager@ubuntu.com>\n"12"Last-Translator: Daniel Nylander <yeager@ubuntu.com>\n"
13"Language-Team: Swedish <sv@li.org>\n"13"Language-Team: Swedish <sv@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -51,11 +51,6 @@
51"instructor"51"instructor"
52msgstr ""52msgstr ""
5353
54#: ../lernid/lernidconfig.py:35
55msgid "Connect to a world of online tutorials quickly and easily."
56msgstr ""
57"Anslut snabbt och enkelt till en hel värld av hjälp och handledningar."
58
59#. Translators: Local time representation54#. Translators: Local time representation
60#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8155#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
61#: ../lernid/Sessions.py:8656#: ../lernid/Sessions.py:86
@@ -147,8 +142,8 @@
147msgstr ""142msgstr ""
148143
149#: ../data/ui/LernidWindow.ui.h:5144#: ../data/ui/LernidWindow.ui.h:5
150msgid "Tweet current session"145msgid "Publicize with Gwibber"
151msgstr "Twittra aktuell lektion"146msgstr ""
152147
153#: ../data/ui/LernidWindow.ui.h:6148#: ../data/ui/LernidWindow.ui.h:6
154msgid "_Edit"149msgid "_Edit"
@@ -416,6 +411,11 @@
416msgid "Nick can only contain English alphabet characters"411msgid "Nick can only contain English alphabet characters"
417msgstr "Användarnamnet får bara innehålla engelska bokstäver"412msgstr "Användarnamnet får bara innehålla engelska bokstäver"
418413
414#: ../lernid/lernidconfig.py:35
415msgid "Connect to a world of online tutorials quickly and easily."
416msgstr ""
417"Anslut snabbt och enkelt till en hel värld av hjälp och handledningar."
418
419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
420#: ../lernid/widgets/NativeChatroom.py:94420#: ../lernid/widgets/NativeChatroom.py:94
421#, python-format421#, python-format
422422
=== modified file 'po/te.po'
--- po/te.po 2012-08-28 07:10:45 +0000
+++ po/te.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2009-12-12 06:14+0000\n"11"PO-Revision-Date: 2009-12-12 06:14+0000\n"
12"Last-Translator: Jono Bacon <jono@ubuntu.com>\n"12"Last-Translator: Jono Bacon <jono@ubuntu.com>\n"
13"Language-Team: Telugu <te@li.org>\n"13"Language-Team: Telugu <te@li.org>\n"
@@ -15,8 +15,8 @@
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=2; plural=n != 1;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -46,10 +46,6 @@
46"instructor"46"instructor"
47msgstr ""47msgstr ""
4848
49#: ../lernid/lernidconfig.py:35
50msgid "Connect to a world of online tutorials quickly and easily."
51msgstr "పాఠాల ప్రపంచానికి త్వరగా మరియు సులభంగా సంధానమవ్వండి."
52
53#. Translators: Local time representation49#. Translators: Local time representation
54#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8150#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
55#: ../lernid/Sessions.py:8651#: ../lernid/Sessions.py:86
@@ -141,7 +137,7 @@
141msgstr ""137msgstr ""
142138
143#: ../data/ui/LernidWindow.ui.h:5139#: ../data/ui/LernidWindow.ui.h:5
144msgid "Tweet current session"140msgid "Publicize with Gwibber"
145msgstr ""141msgstr ""
146142
147#: ../data/ui/LernidWindow.ui.h:6143#: ../data/ui/LernidWindow.ui.h:6
@@ -410,6 +406,10 @@
410msgid "Nick can only contain English alphabet characters"406msgid "Nick can only contain English alphabet characters"
411msgstr ""407msgstr ""
412408
409#: ../lernid/lernidconfig.py:35
410msgid "Connect to a world of online tutorials quickly and easily."
411msgstr "పాఠాల ప్రపంచానికి త్వరగా మరియు సులభంగా సంధానమవ్వండి."
412
413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale413#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
414#: ../lernid/widgets/NativeChatroom.py:94414#: ../lernid/widgets/NativeChatroom.py:94
415#, python-format415#, python-format
416416
=== modified file 'po/tr.po'
--- po/tr.po 2012-08-28 07:10:45 +0000
+++ po/tr.po 2016-09-28 16:23:33 +0000
@@ -7,16 +7,16 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2011-09-01 07:54+0000\n"11"PO-Revision-Date: 2011-09-01 07:54+0000\n"
12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"12"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
13"Language-Team: Turkish <tr@li.org>\n"13"Language-Team: Turkish <tr@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=1; plural=0;\n"17"Plural-Forms: nplurals=2; plural=n != 1;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
@@ -43,10 +43,6 @@
43"instructor"43"instructor"
44msgstr ""44msgstr ""
4545
46#: ../lernid/lernidconfig.py:35
47msgid "Connect to a world of online tutorials quickly and easily."
48msgstr ""
49
50#. Translators: Local time representation46#. Translators: Local time representation
51#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8147#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
52#: ../lernid/Sessions.py:8648#: ../lernid/Sessions.py:86
@@ -138,7 +134,7 @@
138msgstr ""134msgstr ""
139135
140#: ../data/ui/LernidWindow.ui.h:5136#: ../data/ui/LernidWindow.ui.h:5
141msgid "Tweet current session"137msgid "Publicize with Gwibber"
142msgstr ""138msgstr ""
143139
144#: ../data/ui/LernidWindow.ui.h:6140#: ../data/ui/LernidWindow.ui.h:6
@@ -407,6 +403,10 @@
407msgid "Nick can only contain English alphabet characters"403msgid "Nick can only contain English alphabet characters"
408msgstr ""404msgstr ""
409405
406#: ../lernid/lernidconfig.py:35
407msgid "Connect to a world of online tutorials quickly and easily."
408msgstr ""
409
410#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale410#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
411#: ../lernid/widgets/NativeChatroom.py:94411#: ../lernid/widgets/NativeChatroom.py:94
412#, python-format412#, python-format
413413
=== modified file 'po/uk.po'
--- po/uk.po 2012-08-28 07:10:45 +0000
+++ po/uk.po 2016-09-28 16:23:33 +0000
@@ -7,7 +7,7 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2010-08-02 19:20+0000\n"11"PO-Revision-Date: 2010-08-02 19:20+0000\n"
12"Last-Translator: Yuri Chornoivan <yurchor@gmail.com>\n"12"Last-Translator: Yuri Chornoivan <yurchor@gmail.com>\n"
13"Language-Team: Ukrainian <translation@linux.org.ua>\n"13"Language-Team: Ukrainian <translation@linux.org.ua>\n"
@@ -16,8 +16,8 @@
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "17"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
18"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"18"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
19"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"19"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
20"X-Generator: Launchpad (build 15864)\n"20"X-Generator: Launchpad (build 16916)\n"
2121
22#: ../data/ui/AboutLernidDialog.ui.h:122#: ../data/ui/AboutLernidDialog.ui.h:1
23msgid "translator-credits"23msgid "translator-credits"
@@ -48,11 +48,6 @@
48"instructor"48"instructor"
49msgstr ""49msgstr ""
5050
51#: ../lernid/lernidconfig.py:35
52msgid "Connect to a world of online tutorials quickly and easily."
53msgstr ""
54"Програма для спрощення та пришвидшення з’єднання зі світом уроків у мережі."
55
56#. Translators: Local time representation51#. Translators: Local time representation
57#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8152#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
58#: ../lernid/Sessions.py:8653#: ../lernid/Sessions.py:86
@@ -146,8 +141,8 @@
146msgstr ""141msgstr ""
147142
148#: ../data/ui/LernidWindow.ui.h:5143#: ../data/ui/LernidWindow.ui.h:5
149msgid "Tweet current session"144msgid "Publicize with Gwibber"
150msgstr "Створити твіт з поточного сеансу"145msgstr ""
151146
152#: ../data/ui/LernidWindow.ui.h:6147#: ../data/ui/LernidWindow.ui.h:6
153msgid "_Edit"148msgid "_Edit"
@@ -416,6 +411,11 @@
416msgid "Nick can only contain English alphabet characters"411msgid "Nick can only contain English alphabet characters"
417msgstr "Псевдонім може складатися лише з літер англійської абетки"412msgstr "Псевдонім може складатися лише з літер англійської абетки"
418413
414#: ../lernid/lernidconfig.py:35
415msgid "Connect to a world of online tutorials quickly and easily."
416msgstr ""
417"Програма для спрощення та пришвидшення з’єднання зі світом уроків у мережі."
418
419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale419#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
420#: ../lernid/widgets/NativeChatroom.py:94420#: ../lernid/widgets/NativeChatroom.py:94
421#, python-format421#, python-format
422422
=== modified file 'po/zh_CN.po'
--- po/zh_CN.po 2012-08-28 07:10:45 +0000
+++ po/zh_CN.po 2016-09-28 16:23:33 +0000
@@ -7,21 +7,22 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: lernid\n"8"Project-Id-Version: lernid\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-08-19 13:33-0400\n"10"POT-Creation-Date: 2013-02-28 17:10-0500\n"
11"PO-Revision-Date: 2011-03-25 11:25+0000\n"11"PO-Revision-Date: 2014-01-29 15:48+0000\n"
12"Last-Translator: Wylmer Wang <Unknown>\n"12"Last-Translator: John S. Gruber <JohnSGruber@gmail.com>\n"
13"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"13"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"Plural-Forms: nplurals=1; plural=0;\n"17"Plural-Forms: nplurals=1; plural=0;\n"
18"X-Launchpad-Export-Date: 2012-08-28 07:10+0000\n"18"X-Launchpad-Export-Date: 2014-01-30 05:46+0000\n"
19"X-Generator: Launchpad (build 15864)\n"19"X-Generator: Launchpad (build 16916)\n"
2020
21#: ../data/ui/AboutLernidDialog.ui.h:121#: ../data/ui/AboutLernidDialog.ui.h:1
22msgid "translator-credits"22msgid "translator-credits"
23msgstr ""23msgstr ""
24"Launchpad Contributions:\n"24"Launchpad Contributions:\n"
25" John S. Gruber https://launchpad.net/~jsjgruber\n"
25" Wylmer Wang https://launchpad.net/~wantinghard\n"26" Wylmer Wang https://launchpad.net/~wantinghard\n"
26" xianghui liu https://launchpad.net/~largepuma"27" xianghui liu https://launchpad.net/~largepuma"
2728
@@ -48,10 +49,6 @@
48"instructor"49"instructor"
49msgstr ""50msgstr ""
5051
51#: ../lernid/lernidconfig.py:35
52msgid "Connect to a world of online tutorials quickly and easily."
53msgstr "快速方便地连接到全球的在线教程。"
54
55#. Translators: Local time representation52#. Translators: Local time representation
56#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:8153#: ../lernid/widgets/IrcWidget.py:68 ../lernid/Sessions.py:81
57#: ../lernid/Sessions.py:8654#: ../lernid/Sessions.py:86
@@ -143,8 +140,8 @@
143msgstr ""140msgstr ""
144141
145#: ../data/ui/LernidWindow.ui.h:5142#: ../data/ui/LernidWindow.ui.h:5
146msgid "Tweet current session"143msgid "Publicize with Gwibber"
147msgstr "将当前课程发表到 Twitter"144msgstr ""
148145
149#: ../data/ui/LernidWindow.ui.h:6146#: ../data/ui/LernidWindow.ui.h:6
150msgid "_Edit"147msgid "_Edit"
@@ -411,6 +408,10 @@
411msgid "Nick can only contain English alphabet characters"408msgid "Nick can only contain English alphabet characters"
412msgstr "昵称只能包含英语字母"409msgstr "昵称只能包含英语字母"
413410
411#: ../lernid/lernidconfig.py:35
412msgid "Connect to a world of online tutorials quickly and easily."
413msgstr "快速方便地连接到全球的在线教程。"
414
414#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale415#. TRANSLATORS: %s will be a token from the locale of the target classroom session rather than the student's locale
415#: ../lernid/widgets/NativeChatroom.py:94416#: ../lernid/widgets/NativeChatroom.py:94
416#, python-format417#, python-format
417418
=== modified file 'setup.py'
--- setup.py 2016-01-27 14:13:39 +0000
+++ setup.py 2016-09-28 16:23:33 +0000
@@ -68,7 +68,7 @@
6868
69setup(69setup(
70 name = 'lernid',70 name = 'lernid',
71 version = '1.0.4',71 version = '1.0.6',
72 license = 'GPL-3',72 license = 'GPL-3',
73 author = 'John S Gruber',73 author = 'John S Gruber',
74 author_email = 'johnsgruber@gmail.com',74 author_email = 'johnsgruber@gmail.com',

Subscribers

People subscribed via source and target branches