Make missing strings translatable

This commit is contained in:
Marco Pesenti Gritti
2006-07-06 20:25:56 +02:00
parent 6f9ae0c769
commit fbb2621fff
4 changed files with 14 additions and 5 deletions
+3 -1
View File
@@ -8,6 +8,8 @@ import gtk
import pango
import gobject
from gettext import gettext as _
import sugar.util
from sugar.chat.ChatWindow import ChatWindow
from sugar.chat.ActivityChat import ActivityChat
@@ -328,7 +330,7 @@ class ActivityContainer(dbus.service.Object):
self.notebook = gtk.Notebook()
self.notebook.set_scrollable(True)
tab_label = gtk.Label("Everyone")
tab_label = gtk.Label(_("Everyone"))
self._start_page = StartPage(self._signal_helper)
self.notebook.append_page(self._start_page, tab_label)
self._start_page.show()