diff options
author | Burt P <pburt0@gmail.com> | 2017-07-12 12:24:50 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-12 19:38:41 -0700 |
commit | a823fea599c31beac0910ee5dbfcd72d733ff6b2 (patch) | |
tree | cbb66d72b1279b5e076463b14988544156db212e /modules/computer.c | |
parent | e6adeb620e892fafe9f613234fb1a3aa090ff714 (diff) |
User Info and Development header strings made translatable
Finishes https://github.com/lpereira/hardinfo/issues/38
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/computer.c')
-rw-r--r-- | modules/computer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/computer.c b/modules/computer.c index 5ca69242..97369db5 100644 --- a/modules/computer.c +++ b/modules/computer.c @@ -236,7 +236,7 @@ void scan_dev(gboolean reload) gboolean found; if (!detect_lang[i].regex) { - dev_list = h_strdup_cprintf("[%s]\n", dev_list, detect_lang[i].compiler_name); + dev_list = h_strdup_cprintf("[%s]\n", dev_list, _(detect_lang[i].compiler_name)); continue; } |