summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorJuan Sanchez Montalvo <jsmontalvo@osx-l-07779.youview.local>2022-06-24 22:10:13 +0100
committerJesse Duffield <jessedduffield@gmail.com>2022-07-05 19:33:44 +1000
commit11d766053e8fad837d598c9f4d4a0c7af62d0a92 (patch)
tree3b26df22c69c0913693f443775f762d3c41bdb2f /pkg/i18n/english.go
parent41071c37035a5944f77b4f0da5f07ec3b52fef0e (diff)
Allow adding a file to the .git/info/exclude file
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go18
1 files changed, 17 insertions, 1 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 975cc9285..138277ab6 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -155,6 +155,7 @@ type TranslationSet struct {
LcEditFile string
LcOpenFile string
LcIgnoreFile string
+ LcExcludeFile string
LcRefreshFiles string
LcMergeIntoCurrentBranch string
ConfirmQuit string
@@ -345,7 +346,9 @@ type TranslationSet struct {
NotAGitFlowBranch string
NewBranchNamePrompt string
IgnoreTracked string
+ ExcludeTracked string
IgnoreTrackedPrompt string
+ ExcludeTrackedPrompt string
LcViewResetToUpstreamOptions string
LcNextScreenMode string
LcPrevScreenMode string
@@ -560,7 +563,12 @@ type Actions struct {
UnstageFile string
UnstageAllFiles string
StageAllFiles string
+ IgnoreExcludeFile string
IgnoreFile string
+ IgnoreFileErr string
+ ExcludeFile string
+ ExcludeFileErr string
+ ExcludeGitIgnoreErr string
Commit string
EditFile string
Push string
@@ -780,6 +788,7 @@ func EnglishTranslationSet() TranslationSet {
LcEditFile: `edit file`,
LcOpenFile: `open file`,
LcIgnoreFile: `add to .gitignore`,
+ LcExcludeFile: `add to .git/info/exclude`,
LcRefreshFiles: `refresh files`,
LcMergeIntoCurrentBranch: `merge into currently checked out branch`,
ConfirmQuit: `Are you sure you want to quit?`,
@@ -972,6 +981,8 @@ func EnglishTranslationSet() TranslationSet {
NewGitFlowBranchPrompt: "new {{.branchType}} name:",
IgnoreTracked: "Ignore tracked file",
IgnoreTrackedPrompt: "Are you sure you want to ignore a tracked file?",
+ ExcludeTracked: "Exclude tracked file",
+ ExcludeTrackedPrompt: "Are you sure you want to exclude a tracked file?",
LcViewResetToUpstreamOptions: "view upstream reset options",
LcNextScreenMode: "next screen mode (normal/half/fullscreen)",
LcPrevScreenMode: "prev screen mode",
@@ -1169,7 +1180,12 @@ func EnglishTranslationSet() TranslationSet {
UnstageFile: "Unstage file",
UnstageAllFiles: "Unstage all files",
StageAllFiles: "Stage all files",
- IgnoreFile: "Ignore file",
+ IgnoreExcludeFile: "Ignore or Exclude file",
+ IgnoreFile: "Ignore or Exclude file",
+ IgnoreFileErr: "Cannot ignore .gitignore",
+ ExcludeFile: "Exclude file",
+ ExcludeFileErr: "Cannot exclude .git/info/exclude",
+ ExcludeGitIgnoreErr: "Cannot exclude .gitignore",
Commit: "Commit",
EditFile: "Edit file",
Push: "Push",