Fix a typo.
authorfujiwarat <takao.fujiwara1@gmail.com>
Mon, 15 Oct 2012 02:39:42 +0000 (11:39 +0900)
committerfujiwarat <takao.fujiwara1@gmail.com>
Mon, 15 Oct 2012 02:39:42 +0000 (11:39 +0900)
TEST=Manually

Review URL: https://codereview.appspot.com/6651061

bus/engineproxy.c
setup/main.py

index 49df07a..b0c19c1 100644 (file)
@@ -63,10 +63,10 @@ struct _BusEngineProxy {
 struct _BusEngineProxyClass {
     IBusProxyClass parent;
     /* class members */
-    void (* register_properties) (BusEngineProxy      *engine,
-                                  IBusPropList *prop_list);
-    void (* update_property) (BusEngineProxy      *engine,
-                              IBusProperty *prop);
+    void (* register_properties) (BusEngineProxy   *engine,
+                                  IBusPropList     *prop_list);
+    void (* update_property) (BusEngineProxy       *engine,
+                              IBusProperty         *prop);
 };
 
 enum {
index 8a2391d..aed8c7d 100644 (file)
@@ -362,7 +362,8 @@ class Setup(object):
             dlg.destroy()
             self.__flush_gtk_events()
         else:
-            message = _("IBus daemon coundn't be started in %d seconds")
+            # Translators: %d == 5 currently
+            message = _("IBus daemon could not be started in %d seconds")
             dlg = Gtk.MessageDialog(type = Gtk.MessageType.INFO,
                                     buttons = Gtk.ButtonsType.OK,
                                     text = message % timeout)