From bb6c8837610a9f6739188bacfccc3acd50a99c50 Mon Sep 17 00:00:00 2001 From: Joshua Hollander Date: Mon, 26 May 2025 13:23:12 +0800 Subject: [PATCH] Print default option when prompting to create a new git repo --- pkg/i18n/english.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index 055e26c87..468231f9b 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -1529,7 +1529,7 @@ func EnglishTranslationSet() *TranslationSet { DiscardFileChangesTitle: "Discard file changes", DiscardFileChangesPrompt: "Are you sure you want to remove changes to the selected file(s) from this commit?\n\nThis action will start a rebase, reverting these file changes. Be aware that if subsequent commits depend on these changes, you may need to resolve conflicts.\nNote: This will also reset any active custom patches.", DisabledForGPG: "Feature not available for users using GPG.\n\nIf you are using a passphrase agent (e.g. gpg-agent) so that you don't have to type your passphrase when signing, you can enable this feature by adding\n\ngit:\n overrideGpg: true\n\nto your lazygit config file.", - CreateRepo: "Not in a git repository. Create a new git repository? (y/n): ", + CreateRepo: "Not in a git repository. Create a new git repository? (y/N): ", BareRepo: "You've attempted to open Lazygit in a bare repo but Lazygit does not yet support bare repos. Open most recent repo? (y/n) ", InitialBranch: "Branch name? (leave empty for git's default): ", NoRecentRepositories: "Must open lazygit in a git repository. No valid recent repositories. Exiting.",