summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-12-06 08:26:05 +0100
committermjarkk <mkopenga@gmail.com>2018-12-06 08:26:05 +0100
commitf6e83cdbdff57e8f3403c6b7f7acd22b88ca8613 (patch)
treec603822ed7f120cbe86ccefa0ccfe47f090b88d0 /pkg/i18n
parentc269ad137090479be68b5353a05f2ed036b3dfc0 (diff)
Started working on the popup
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go6
-rw-r--r--pkg/i18n/english.go6
-rw-r--r--pkg/i18n/polish.go6
3 files changed, 18 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 5f9e4bf34..2f5a3a404 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -415,6 +415,12 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "fetch",
Other: `fetch`,
+ }, &i18n.Message{
+ ID: "NoAutomaticGitFetchTitle",
+ Other: `No automatic git fetch`,
+ }, &i18n.Message{
+ ID: "NoAutomaticGitFetchBody",
+ Other: `Lazygit can't use "git fetch" in a private repo use f in the branch panel to run git fetch manually`,
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 929e8834d..2ef1d8597 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -423,6 +423,12 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "fetch",
Other: `fetch`,
+ }, &i18n.Message{
+ ID: "NoAutomaticGitFetchTitle",
+ Other: `No automatic git fetch`,
+ }, &i18n.Message{
+ ID: "NoAutomaticGitFetchBody",
+ Other: `Lazygit can't use "git fetch" in a private repo use f in the branch panel to run git fetch manually`,
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index ec59288fa..d2b4a84ed 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -398,6 +398,12 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "fetch",
Other: `fetch`,
+ }, &i18n.Message{
+ ID: "NoAutomaticGitFetchTitle",
+ Other: `No automatic git fetch`,
+ }, &i18n.Message{
+ ID: "NoAutomaticGitFetchBody",
+ Other: `Lazygit can't use "git fetch" in a private repo use f in the branch panel to run git fetch manually`,
},
)
}