diff options
author | Yaron Shahrabani <[email protected]> | 2021-09-22 00:06:21 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-09-24 14:57:10 +0200 |
commit | 5a78ea4d0eb20ad863383ba569924cf03b285c61 (patch) | |
tree | fd07a0ec4dbde81ac2b209395ca3d774a53263df /capplets/time-admin | |
parent | d938ffc62902e36bfde84594873d4a3b8eaf0934 (diff) | |
download | mate-control-center-5a78ea4d0eb20ad863383ba569924cf03b285c61.tar.bz2 mate-control-center-5a78ea4d0eb20ad863383ba569924cf03b285c61.tar.xz |
Remove redundant i18n functions
These specific functions can only cause mess when translated, it's better to keep the original terms.
Diffstat (limited to 'capplets/time-admin')
-rw-r--r-- | capplets/time-admin/src/main.c | 4 |
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; } |