summaryrefslogtreecommitdiff
path: root/capplets/time-admin
diff options
context:
space:
mode:
Diffstat (limited to 'capplets/time-admin')
-rw-r--r--capplets/time-admin/src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capplets/time-admin/src/main.c b/capplets/time-admin/src/main.c
index 5f0463e3..a15254e6 100644
--- a/capplets/time-admin/src/main.c
+++ b/capplets/time-admin/src/main.c
@@ -261,7 +261,7 @@ static gboolean InitDbusProxy(TimeAdmin *ta)
ta->Connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
if(ta->Connection == NULL)
{
- ErrorMessage (_("g_bus_get_sync"), error->message);
+ ErrorMessage ("g_bus_get_sync", error->message);
goto EXIT;
}
ta->proxy = g_dbus_proxy_new_sync (ta->Connection,
@@ -274,7 +274,7 @@ static gboolean InitDbusProxy(TimeAdmin *ta)
&error);
if(ta->proxy == NULL)
{
- ErrorMessage (_("g_bus_proxy_new"), error->message);
+ ErrorMessage ("g_bus_proxy_new", error->message);
goto EXIT;
}