Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/extensions/cpsection/network
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-10-28 15:08:31 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-10-28 15:08:31 (GMT)
commit1a42a05e3d8d08f5ec4ecd6e87f21c26d663de31 (patch)
tree9c735c3a2b88a11b4a62561d6fb8d5aa0a9a419a /extensions/cpsection/network
parent4ff4e22a1f85fcf2ebae80c79c5360d8533031d9 (diff)
Better jabber server description #8623
Diffstat (limited to 'extensions/cpsection/network')
-rw-r--r--extensions/cpsection/network/view.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/extensions/cpsection/network/view.py b/extensions/cpsection/network/view.py
index 4f4ada7..9a7f387 100644
--- a/extensions/cpsection/network/view.py
+++ b/extensions/cpsection/network/view.py
@@ -59,7 +59,7 @@ class Network(SectionView):
box_wireless.set_border_width(style.DEFAULT_SPACING * 2)
box_wireless.set_spacing(style.DEFAULT_SPACING)
- radio_info = gtk.Label(_("Turn of the wireless radio to save "
+ radio_info = gtk.Label(_("Turn off the wireless radio to save "
"battery life"))
radio_info.set_alignment(0, 0)
radio_info.set_line_wrap(True)
@@ -110,7 +110,7 @@ class Network(SectionView):
self.pack_start(separator_mesh, False)
separator_mesh.show()
- label_mesh = gtk.Label(_('Mesh'))
+ label_mesh = gtk.Label(_('Collaboration'))
label_mesh.set_alignment(0, 0)
self.pack_start(label_mesh, expand=False)
label_mesh.show()
@@ -118,6 +118,15 @@ class Network(SectionView):
box_mesh.set_border_width(style.DEFAULT_SPACING * 2)
box_mesh.set_spacing(style.DEFAULT_SPACING)
+ server_info = gtk.Label(_("The server is the equivalent of what"
+ " room you are in; people on the same server"
+ " will be able to see each other, even when"
+ " they aren't on the same network."))
+ server_info.set_alignment(0, 0)
+ server_info.set_line_wrap(True)
+ box_mesh.pack_start(server_info, expand=False)
+ server_info.show()
+
box_server = gtk.HBox(spacing=style.DEFAULT_SPACING)
label_server = gtk.Label(_('Server:'))
label_server.set_alignment(1, 0.5)