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/users.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/users.c')
-rw-r--r-- | modules/computer/users.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/modules/computer/users.c b/modules/computer/users.c index e8f891ac..dcb332ac 100644 --- a/modules/computer/users.c +++ b/modules/computer/users.c @@ -39,15 +39,16 @@ scan_users_do(void) while (passwd_) { gchar *key = g_strdup_printf("USER%s", passwd_->pw_name); - gchar *val = g_strdup_printf("[User Information]\n" - "User ID=%d\n" - "Group ID=%d\n" - "Home directory=%s\n" - "Default shell=%s\n", - (gint) passwd_->pw_uid, - (gint) passwd_->pw_gid, - passwd_->pw_dir, - passwd_->pw_shell); + gchar *val = g_strdup_printf("[%s]\n" + "%s=%d\n" + "%s=%d\n" + "%s=%s\n" + "%s=%s\n", + _("User Information"), + _("User ID"), (gint) passwd_->pw_uid, + _("Group ID"), (gint) passwd_->pw_gid, + _("Home directory"), passwd_->pw_dir, + _("Default shell"), passwd_->pw_shell); moreinfo_add_with_prefix("COMP", key, val); strend(passwd_->pw_gecos, ','); @@ -55,6 +56,6 @@ scan_users_do(void) passwd_ = getpwent(); g_free(key); } - + endpwent(); } |