libpurple/status.c

branch
soc.2013.gobjectification.plugins
changeset 36949
06cbd6ed97ed
parent 36891
f3bf09e2e4cf
parent 35058
506740af931c
child 36955
de491fc3f726
--- a/libpurple/status.c	Fri Nov 08 05:26:50 2013 +0530
+++ b/libpurple/status.c	Sat Nov 16 17:21:42 2013 +0530
@@ -1227,20 +1227,20 @@
 	obj_class->set_property = purple_status_set_property;
 
 	g_object_class_install_property(obj_class, PROP_STATUS_TYPE,
-			g_param_spec_pointer("status-type", _("Status type"),
-				_("The PurpleStatusType of the status."),
+			g_param_spec_pointer("status-type", "Status type",
+				"The PurpleStatusType of the status.",
 				G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)
 			);
 
 	g_object_class_install_property(obj_class, PROP_PRESENCE,
-			g_param_spec_object("presence", _("Presence"),
-				_("The presence that the status belongs to."), PURPLE_TYPE_PRESENCE,
+			g_param_spec_object("presence", "Presence",
+				"The presence that the status belongs to.", PURPLE_TYPE_PRESENCE,
 				G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)
 			);
 
 	g_object_class_install_property(obj_class, PROP_ACTIVE,
-			g_param_spec_boolean("active", _("Active"),
-				_("Whether the status is active or not."), FALSE,
+			g_param_spec_boolean("active", "Active",
+				"Whether the status is active or not.", FALSE,
 				G_PARAM_READWRITE)
 			);
 

mercurial