[empathy] use gettext() instead of _()
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] use gettext() instead of _()
- Date: Wed, 29 Sep 2010 10:55:18 +0000 (UTC)
commit 2e589ed7517c0f98320481b93d6a9fcc39d56a3b
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Tue Sep 28 13:30:03 2010 +0200
use gettext() instead of _()
libempathy/empathy-utils.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index 986090b..777ffeb 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -556,7 +556,7 @@ empathy_protocol_name_to_display_name (const gchar *proto_name)
if (!tp_strdiff (proto_name, names[i].proto))
{
if (names[i].translated)
- return _(names[i].display);
+ return gettext(names[i].display);
else
return names[i].display;
}
@@ -584,7 +584,7 @@ empathy_service_name_to_display_name (const gchar *service_name)
if (!tp_strdiff (service_name, names[i].service))
{
if (names[i].translated)
- return _(names[i].display);
+ return gettext(names[i].display);
else
return names[i].display;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]