From 5a78ea4d0eb20ad863383ba569924cf03b285c61 Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani Date: Wed, 22 Sep 2021 00:06:21 +0300 Subject: Remove redundant i18n functions These specific functions can only cause mess when translated, it's better to keep the original terms. --- capplets/time-admin/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'capplets/time-admin') 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; } -- cgit v1.2.1