summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-12-02 14:58:18 +0100
committermjarkk <mkopenga@gmail.com>2018-12-02 14:58:18 +0100
commit2edd2b74ff68d6f55172c728e9d5f0d2aea69684 (patch)
treec99aadba94b9a30ffe8127c3f8622cf95f4b7f88 /pkg/i18n
parentd91493b5876aeb644dab18b4c41b0ae56fb2f94b (diff)
Removed a lot of useless code
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go7
-rw-r--r--pkg/i18n/english.go7
-rw-r--r--pkg/i18n/polish.go7
3 files changed, 6 insertions, 15 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 86b679692..5f9e4bf34 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -413,11 +413,8 @@ func addDutch(i18nObject *i18n.Bundle) error {
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`,
+ ID: "fetch",
+ Other: `fetch`,
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 07dbeaffe..929e8834d 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -421,11 +421,8 @@ func addEnglish(i18nObject *i18n.Bundle) error {
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`,
+ ID: "fetch",
+ Other: `fetch`,
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 11c4b574b..ec59288fa 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -396,11 +396,8 @@ func addPolish(i18nObject *i18n.Bundle) error {
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`,
+ ID: "fetch",
+ Other: `fetch`,
},
)
}