diff options
author | Burt P <pburt0@gmail.com> | 2017-07-15 06:13:12 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-19 07:20:40 -0700 |
commit | ae4750fb3f5f40522bcfadac2d13c28d7d3d7879 (patch) | |
tree | 6976c1c33492e76e6781cee0b75e2f96f2271c3c /modules/computer/users.c | |
parent | f85f2791487b39c90fa9881343f8f67634239aef (diff) |
filesystem: make strings translatable
Plus a couple other minor tweaks.
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/computer/users.c')
-rw-r--r-- | modules/computer/users.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/computer/users.c b/modules/computer/users.c index dcb332ac..f47320bb 100644 --- a/modules/computer/users.c +++ b/modules/computer/users.c @@ -47,8 +47,8 @@ scan_users_do(void) _("User Information"), _("User ID"), (gint) passwd_->pw_uid, _("Group ID"), (gint) passwd_->pw_gid, - _("Home directory"), passwd_->pw_dir, - _("Default shell"), passwd_->pw_shell); + _("Home Directory"), passwd_->pw_dir, + _("Default Shell"), passwd_->pw_shell); moreinfo_add_with_prefix("COMP", key, val); strend(passwd_->pw_gecos, ','); |