summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorDawid Dziurla <dawidd0811@gmail.com>2018-09-09 10:39:08 +0200
committerDawid Dziurla <dawidd0811@gmail.com>2018-09-09 10:41:01 +0200
commit6f7de83bcee20ab14556b95041695b959dfb407b (patch)
treeebedfd0baaa505965bba3efba91e561c679a90b3 /pkg/i18n
parente80371fc6f1dbbf826fcf97626eaa4bc445736f9 (diff)
parent5af03b68206fcfe1a22a9a4c74d730d2b1b13603 (diff)
Merge branch 'master' into feature/help
conflicts resolved
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go3
-rw-r--r--pkg/i18n/english.go3
-rw-r--r--pkg/i18n/polish.go3
3 files changed, 9 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 7a3ba16b0..21330e55c 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -367,6 +367,9 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "mergeIntoCurrentBranch",
Other: `merge into currently checked out branch`,
+ }, &i18n.Message{
+ ID: "ConfirmQuit",
+ Other: `Are you sure you want to quit?`,
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index c92d5510a..677fa295b 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -387,6 +387,9 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "mergeIntoCurrentBranch",
Other: `merge into currently checked out branch`,
+ }, &i18n.Message{
+ ID: "ConfirmQuit",
+ Other: `Are you sure you want to quit?`,
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 0e3702f43..c64ab87b8 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -365,6 +365,9 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "mergeIntoCurrentBranch",
Other: `scal do obecnej gałęzi`,
+ }, &i18n.Message{
+ ID: "ConfirmQuit",
+ Other: `Na pewno chcesz wyjść z programu?`,
},
)
}