From 5a4456af0fd81e5a26cd2fbde5f63d90dd3f6ea0 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Fri, 17 May 2024 20:30:13 +0900 Subject: [PATCH] Application: Localize go-to option --- src/Application.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.vala b/src/Application.vala index 94cfd977e..10c131d38 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -38,7 +38,7 @@ namespace Scratch { { "new-tab", 't', 0, OptionArg.NONE, null, N_("New Tab"), null }, { "new-window", 'n', 0, OptionArg.NONE, null, N_("New Window"), null }, { "version", 'v', 0, OptionArg.NONE, null, N_("Print version info and exit"), null }, - { "go-to", 'g', 0, OptionArg.STRING, null, "Open file at specified selection range", "" }, + { "go-to", 'g', 0, OptionArg.STRING, null, N_("Open file at specified selection range"), N_("") }, { GLib.OPTION_REMAINING, 0, 0, OptionArg.FILENAME_ARRAY, null, null, N_("[FILEā€¦]") }, { null } };