diff options
author | Burt P <pburt0@gmail.com> | 2017-08-01 00:57:03 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-08-04 09:18:31 -0700 |
commit | 7d8c642a5f1955395bfca1bf95ca32ef7bd6c288 (patch) | |
tree | 92593efef01ace1feeb042bf6e35cd9e6b45b7eb /hardinfo/hardinfo.c | |
parent | 4e05ca524fd75bccbb87d790f10118c650320cda (diff) |
hardinfo CLI translation fixes
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'hardinfo/hardinfo.c')
-rw-r--r-- | hardinfo/hardinfo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hardinfo/hardinfo.c b/hardinfo/hardinfo.c index 8c19150c..9cbdebed 100644 --- a/hardinfo/hardinfo.c +++ b/hardinfo/hardinfo.c @@ -44,9 +44,9 @@ int main(int argc, char **argv) /* show version information and quit */ if (params.show_version) { - g_print("HardInfo version " VERSION "\n"); - g_print - (_("Copyright (C) 2003-2009 Leandro A. F. Pereira. See COPYING for details.\n\n")); + g_print("HardInfo version " VERSION "\n"); + g_print + (_(/*/ %d will be latest year of copyright*/ "Copyright (C) 2003-%d Leandro A. F. Pereira. See COPYING for details.\n\n"), 2017); g_print(_("Compile-time options:\n" " Release version: %s (%s)\n" @@ -74,7 +74,7 @@ int main(int argc, char **argv) /* list all module names */ if (params.list_modules) { g_print(_("Modules:\n" - "%-20s%-15s%-12s\n"), _("File Name"), _("Name"), _("Version")); + "%-20s %-15s %-12s\n"), _("File Name"), _("Name"), _("Version")); for (modules = modules_load_all(); modules; modules = modules->next) { @@ -82,7 +82,7 @@ int main(int argc, char **argv) ModuleAbout *ma = module_get_about(module); gchar *name = g_path_get_basename(g_module_name(module->dll)); - g_print("%-20s%-15s%-12s\n", name, module->name, ma->version); + g_print("%-20s %-15s %-12s\n", name, module->name, ma->version); g_free(name); } |