summaryrefslogtreecommitdiff
path: root/endless/eosattribution.c
diff options
context:
space:
mode:
authorFernando Farfan <ffarfan@gmail.com>2015-08-28 17:15:03 -0600
committerFernando Farfan <ffarfan@gmail.com>2015-08-28 20:10:32 -0600
commit0418b073e8c27bd8e187963c76e2066f5bfc806a (patch)
treed8504d60b962933ded15da35b1831791ffc1f49b /endless/eosattribution.c
parent6ff0a36615aebf2b776cec09f890483885414efd (diff)
Localization of license name is done by API
The localization of the license display name is done by the API directly, so the consuming methods should not do it again. [endlessm/eos-sdk#3532]
Diffstat (limited to 'endless/eosattribution.c')
-rw-r--r--endless/eosattribution.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/endless/eosattribution.c b/endless/eosattribution.c
index c930169..87d0876 100644
--- a/endless/eosattribution.c
+++ b/endless/eosattribution.c
@@ -226,7 +226,7 @@ render_license_link (GtkTreeViewColumn *column,
string. Note: this string is markup, and so should not contain any
ampersands (&), less-than signs (<), or greater-than signs (>). */
gchar *license_string = g_strdup_printf (_("%s."),
- gettext (eos_get_license_display_name (license_code)));
+ eos_get_license_display_name (license_code));
gboolean behave_like_link = (license_uri != NULL);
g_object_set (renderer,
"markup", license_string,