summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-06 11:44:41 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-01-07 10:52:51 +1100
commit93729ba61bc374c1ffa3d8a521ff75796fb899a2 (patch)
treec1567564fbedd79a42161a2d42ced46599a22972 /pkg/i18n
parent91fe68576cde3e4582373b255c5eb97cd3065c71 (diff)
fix some things
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index da87f0d10..7ab71465f 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -438,7 +438,6 @@ type TranslationSet struct {
LcDefaultBranch string
LcSelectBranch string
CreatePullRequest string
- OpeningCommitInBrowser string
SelectConfigFile string
NoConfigFileFoundErr string
LcLoadingFileSuggestions string
@@ -541,6 +540,8 @@ type Actions struct {
Redo string
CopyPullRequestURL string
OpenMergeTool string
+ OpenCommitInBrowser string
+ OpenPullRequest string
}
const englishIntroPopupMessage = `
@@ -990,7 +991,6 @@ func EnglishTranslationSet() TranslationSet {
LcCreatePullRequestOptions: "create pull request options",
LcDefaultBranch: "default branch",
LcSelectBranch: "select branch",
- OpeningCommitInBrowser: "Opening commit in browser at URL: %s",
SelectConfigFile: "Select config file",
NoConfigFileFoundErr: "No config file found",
LcLoadingFileSuggestions: "loading file suggestions",
@@ -1091,6 +1091,8 @@ func EnglishTranslationSet() TranslationSet {
Redo: "Redo",
CopyPullRequestURL: "Copy pull request URL",
OpenMergeTool: "Open merge tool",
+ OpenCommitInBrowser: "Open commit in browser",
+ OpenPullRequest: "Open pull request in browser",
},
}
}