aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorBurt P <pburt0@gmail.com>2018-10-22 14:36:44 -0500
committerLeandro A. F. Pereira <leandro@hardinfo.org>2018-11-04 15:01:49 -0800
commit095fd314a33cb8153b4d15822ac0886e6504c1bc (patch)
tree54b15179eb32a33491051568786a260d065549ce /shell
parentacb24e348a36e8717f49b2eac5f220e4550272cf (diff)
shell: the label part should already have been translated
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/shell.c b/shell/shell.c
index 83677ea1..43b72c1c 100644
--- a/shell/shell.c
+++ b/shell/shell.c
@@ -1242,11 +1242,11 @@ group_handle_normal(GKeyFile * key_file, ShellModuleEntry * entry,
*(strchr(flags+1, '$')+1) = 0;
gtk_tree_store_set(store, &child, INFO_TREE_COL_NAME,
- _(name), INFO_TREE_COL_DATA, flags, -1);
+ name, INFO_TREE_COL_DATA, flags, -1);
g_free(flags);
} else {
- gtk_tree_store_set(store, &child, INFO_TREE_COL_NAME, _(key),
+ gtk_tree_store_set(store, &child, INFO_TREE_COL_NAME, key,
INFO_TREE_COL_DATA, NULL, -1);
}