summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorGlenn Vriesman <glenn.vriesman@gmail.com>2020-02-03 16:59:46 +0100
committerJesse Duffield <jessedduffield@gmail.com>2020-02-06 23:19:29 +1100
commit0164abbd4a5c7206b5980d65aff1f9fa7fc3e188 (patch)
tree4a199a5467dd28cd53c794a0364b9076b8ad2ac0 /pkg/i18n/english.go
parente92af63636d8e8c5ff830866632173e52ee86d63 (diff)
Added feature to ignore tracked files
Signed-off-by: Glenn Vriesman <glenn.vriesman@gmail.com>
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 5f63f18b4..2d7c40624 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -163,9 +163,6 @@ func addEnglish(i18nObject *i18n.Bundle) error {
ID: "CannotGitAdd",
Other: "Cannot git add --patch untracked files",
}, &i18n.Message{
- ID: "CantIgnoreTrackFiles",
- Other: "Cannot ignore tracked files",
- }, &i18n.Message{
ID: "NoStagedFilesToCommit",
Other: "There are no staged files to commit",
}, &i18n.Message{
@@ -939,6 +936,12 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NewBranchNamePrompt",
Other: "new {{.branchType}} name:",
+ }, &i18n.Message{
+ ID: "IgnoreTracked",
+ Other: "Ignore tracked file",
+ }, &i18n.Message{
+ ID: "IgnoreTrackedPrompt",
+ Other: "Are you sure you want to ignore a tracked file?",
},
)
}