Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index 480d7f8..afa9fdb 100644
--- a/activity.py
+++ b/activity.py
@@ -98,7 +98,7 @@ class SpeakActivity(SharedActivity):
# make an audio device for playing back and rendering audio
self.connect("notify::active", self._activeCb)
- # make a box to type into - combo for user
+ # make a box to type into - combo for user to type
self.entrycombo = Gtk.ComboBoxText.new_with_entry()
self.entrycombo.connect("changed", self._combo_changed_cb)
self.entry = self.entrycombo.get_child()
@@ -181,7 +181,7 @@ class SpeakActivity(SharedActivity):
mode_chat.connect('toggled', self.__toggled_mode_chat_cb, all_voices)
toolbox.toolbar.insert(mode_chat, -1)
- #toolbar: vouces combo (not working)
+ #toolbar: voices combo (not working)
voices_toolitem = ToolWidget(widget=self.voices)
toolbox.toolbar.insert(voices_toolitem, -1)