summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-11-02 21:16:00 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-11-05 07:58:21 +1100
commitccd80a0e4b87af6d9ada5895c2135736665a9387 (patch)
tree7ffa5b68d1ad7ee7dbc1fd62ee1227c666a8423c /pkg/i18n
parent37be9dbea18f52a544a1dd134657c02c1ee61aef (diff)
add menu options for log stuff
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index b7c38d7ac..da218ac74 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -436,11 +436,17 @@ type TranslationSet struct {
SelectConfigFile string
NoConfigFileFoundErr string
LcLoadingFileSuggestions string
+ LcLoadingCommits string
MustSpecifyOriginError string
GitOutput string
GitCommandFailed string
AbortTitle string
AbortPrompt string
+ LcOpenLogMenu string
+ LogMenuTitle string
+ ToggleShowGitGraphAll string
+ ShowGitGraph string
+ SortCommits string
Spans Spans
}
@@ -970,11 +976,17 @@ func englishTranslationSet() TranslationSet {
SelectConfigFile: "Select config file",
NoConfigFileFoundErr: "No config file found",
LcLoadingFileSuggestions: "loading file suggestions",
+ LcLoadingCommits: "loading commits",
MustSpecifyOriginError: "Must specify a remote if specifying a branch",
GitOutput: "Git output:",
GitCommandFailed: "Git command failed. Check command log for details (open with %s)",
AbortTitle: "Abort %s",
AbortPrompt: "Are you sure you want to abort the current %s?",
+ LcOpenLogMenu: "open log menu",
+ LogMenuTitle: "Commit Log Options",
+ ToggleShowGitGraphAll: "toggle show whole git graph (pass the `--all` flag to `git log`)",
+ ShowGitGraph: "show git graph",
+ SortCommits: "commit sort order",
Spans: Spans{
// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
CheckoutCommit: "Checkout commit",