summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-01-27 11:58:06 +0100
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-12 12:30:42 +0200
commit7e7616d3a8914670b3ba19ca608199a8848ed7c7 (patch)
tree9a8ff519162a4cb0e06173dc23032787b03b823b
parent49e810fd4e85a3b652bd3cf75d8bb195052b739f (diff)
fix some phrasing
-rw-r--r--telepathy-glib/proxy.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/telepathy-glib/proxy.c b/telepathy-glib/proxy.c
index ae891cf9..f838e09a 100644
--- a/telepathy-glib/proxy.c
+++ b/telepathy-glib/proxy.c
@@ -1684,8 +1684,8 @@ check_depends_ready (TpProxy *self,
switch (dep_state)
{
case FEATURE_STATE_INVALID:
- DEBUG ("Can't prepare %s, one dep is invalid: %s",
- g_quark_to_string (name), g_quark_to_string (dep));
+ DEBUG ("Can't prepare %s, because %s (a dependency) is "
+ "invalid", g_quark_to_string (name), g_quark_to_string (dep));
*failed = TRUE;
return FALSE;
@@ -1693,7 +1693,8 @@ check_depends_ready (TpProxy *self,
case FEATURE_STATE_FAILED:
if (!can_retry || !dep_feature->can_retry)
{
- DEBUG ("Can't prepare %s, one dep failed: %s",
+ DEBUG ("Can't prepare %s, because %s (a dependency) is "
+ "failed to prepare",
g_quark_to_string (name), g_quark_to_string (dep));
*failed = TRUE;
@@ -2027,8 +2028,8 @@ request_is_complete (TpProxy *self,
}
else
{
- /* We have to wait than deps finished their
- * preparation */
+ /* We have to wait until the deps finish their
+ * preparation. */
complete = FALSE;
}
}