summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-11-25 13:15:36 +0100
committermjarkk <mkopenga@gmail.com>2018-11-25 13:15:36 +0100
commit9da1382e09c2e3c43c8e979e26d7614c139d12dd (patch)
tree3ede904373f36aa583f27a8155684c3468f3f174 /pkg/i18n
parentadfc00bcdcaaaab2e1102509d604017c74e97fba (diff)
Added credentials 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 ca88585b8..86b679692 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -412,6 +412,12 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NoBranchOnRemote",
Other: `Deze branch bestaat niet op de remote. U moet het eerst naar de remote pushen.`,
+ }, &i18n.Message{
+ ID: "RepoRequiresCredentialsTitle",
+ Other: `Repo heeft inloggegevens nodig`,
+ }, &i18n.Message{
+ ID: "RepoRequiresCredentialsBody",
+ Other: `Lazygit heeft inloggegevens nodig om git fetch te kunnen gebruiken`,
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index dc4e1537c..07dbeaffe 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -420,6 +420,12 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NoBranchOnRemote",
Other: `This branch doesn't exist on remote. You need to push it to remote first.`,
+ }, &i18n.Message{
+ ID: "RepoRequiresCredentialsTitle",
+ Other: `Repo requires credentials`,
+ }, &i18n.Message{
+ ID: "RepoRequiresCredentialsBody",
+ Other: `Lazygit needs credentials to use git fetch`,
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index d5a5d6ec0..11c4b574b 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -395,6 +395,12 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "NoBranchOnRemote",
Other: `Ta gałąź nie istnieje na zdalnym. Najpierw musisz go odepchnąć na odległość.`,
+ }, &i18n.Message{
+ ID: "RepoRequiresCredentialsTitle",
+ Other: `Repo requires credentials`,
+ }, &i18n.Message{
+ ID: "RepoRequiresCredentialsBody",
+ Other: `Lazygit needs credentials to use git fetch`,
},
)
}