From ecad431523a6b00fb00db75907f1009c6bd2245c Mon Sep 17 00:00:00 2001 From: "suhird.singh" Date: Wed, 24 Jun 2026 13:38:25 -0400 Subject: [PATCH] i18n: add scroll-to-top/bottom shortcut descriptions Add GotoTop and GotoBottom translation entries used by the upcoming vim-style gg/G navigation bindings in the main panel. --- pkg/i18n/english.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index d86b0c84..4d119227 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -63,6 +63,8 @@ type TranslationSet struct { Recreate string PreviousContext string NextContext string + GotoTop string + GotoBottom string Attach string ViewLogs string UpProject string @@ -194,6 +196,8 @@ func englishSet() TranslationSet { Recreate: "recreate", PreviousContext: "previous tab", NextContext: "next tab", + GotoTop: "scroll to top", + GotoBottom: "scroll to bottom", Attach: "attach", ViewLogs: "view logs", UpProject: "up project",