From af5ae63b7e366609d744fc3f2cd3041c2b4793d9 Mon Sep 17 00:00:00 2001 From: Ryo Nakano <26003928+ryonakano@users.noreply.github.com> Date: Thu, 25 Apr 2019 17:23:12 +0900 Subject: [PATCH] Fix help info is not displayed correctly other than in en_US --- src/Application.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index d1c6f60402..d08669e4ed 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -259,8 +259,8 @@ namespace Scratch { { "new-tab", 't', 0, OptionArg.NONE, out create_new_tab, N_("New Tab"), null }, { "new-window", 'n', 0, OptionArg.NONE, out create_new_window, N_("New Window"), null }, { "version", 'v', 0, OptionArg.NONE, out print_version, N_("Print version info and exit"), null }, - { "set", 's', 0, OptionArg.STRING, ref _app_cmd_name, N_("Set of plugins"), "" }, - { "cwd", 'c', 0, OptionArg.STRING, ref _cwd, N_("Current working directory"), "" }, + { "set", 's', 0, OptionArg.STRING, ref _app_cmd_name, N_("Set of plugins"), N_("plugin") }, + { "cwd", 'c', 0, OptionArg.STRING, ref _cwd, N_("Current working directory"), N_("directory") }, { null } };