summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rw-r--r--tool/gkr-tool.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tool/gkr-tool.c b/tool/gkr-tool.c
index e5db5739..030fb992 100644
--- a/tool/gkr-tool.c
+++ b/tool/gkr-tool.c
@@ -98,12 +98,13 @@ print_general_usage (void)
CommandInfo *cmd;
const gchar *prefix;
- g_printerr ("usage: gnome-keyring command [options]\n");
+ g_printerr (_("usage: gnome-keyring command [options]\n"));
- prefix = "commands: ";
+ prefix = _("commands: ");
for (cmd = command_info; cmd->name; ++cmd) {
g_printerr ("%s%s\n", prefix, cmd->name);
- prefix = " ";
+ // Translators: keep same length as translated message "commands: "
+ prefix = _(" ");
}
}