Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-07-06 18:25:56 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-07-06 18:25:56 (GMT)
commitfbb2621fffa6e1e7fc9338b9cb8ab5a789260429 (patch)
tree5e8f96b63f5f5cea36a50d02365d1228090157b7 /shell
parent6f9ae0c769fad8e8e75484d21dc96fc3208f4f0c (diff)
Make missing strings translatable
Diffstat (limited to 'shell')
-rwxr-xr-xshell/shell.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/shell.py b/shell/shell.py
index c293d5f..fd340be 100755
--- a/shell/shell.py
+++ b/shell/shell.py
@@ -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()