summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorMark Kopenga <mkopenga@gmail.com>2018-10-23 13:52:50 +0200
committerGitHub <noreply@github.com>2018-10-23 13:52:50 +0200
commit1fedda6a752133cb74ddd75c7c8a839835369f92 (patch)
tree0681e80d64dd2764595b445b8f22ac0bbf7e5bed /pkg/i18n
parentac03665df34e8be89672fb98e202b182d745fdaf (diff)
parent3b6b68a2a1541fe26b39cba676b039f72142a28b (diff)
Merge branch 'master' into https-ask-for-username-password
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go9
-rw-r--r--pkg/i18n/english.go9
-rw-r--r--pkg/i18n/polish.go9
3 files changed, 27 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 87b5d7a90..ff9e50190 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -388,6 +388,15 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "ConfirmQuit",
Other: `Weet je zeker dat je dit programma wil sluiten?`,
+ }, &i18n.Message{
+ ID: "UnsupportedGitService",
+ Other: `Niet-ondersteunde git-service`,
+ }, &i18n.Message{
+ ID: "createPullRequest",
+ Other: `maak een pull-aanvraag`,
+ }, &i18n.Message{
+ ID: "NoBranchOnRemote",
+ Other: `Deze tak bestaat niet op de afstandsbediening. U moet eerst op de afstandsbediening drukken.`,
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index b802597b3..52c2f993a 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -411,6 +411,15 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "SwitchRepo",
Other: `switch to a recent repo`,
+ }, &i18n.Message{
+ ID: "UnsupportedGitService",
+ Other: `Unsupported git service`,
+ }, &i18n.Message{
+ ID: "createPullRequest",
+ Other: `create pull request`,
+ }, &i18n.Message{
+ ID: "NoBranchOnRemote",
+ Other: `This branch doesn't exist on remote. You need to push it to remote first.`,
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index d9f855148..d5a5d6ec0 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -386,6 +386,15 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "ConfirmQuit",
Other: `Na pewno chcesz wyjść z programu?`,
+ }, &i18n.Message{
+ ID: "UnsupportedGitService",
+ Other: `Nieobsługiwana usługa git`,
+ }, &i18n.Message{
+ ID: "createPullRequest",
+ Other: `utwórz żądanie wyciągnięcia`,
+ }, &i18n.Message{
+ ID: "NoBranchOnRemote",
+ Other: `Ta gałąź nie istnieje na zdalnym. Najpierw musisz go odepchnąć na odległość.`,
},
)
}