summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-04-07 11:35:34 +1000
committerJesse Duffield <jessedduffield@gmail.com>2019-04-07 13:13:40 +1000
commit60e33f5d8c0751ddb75dfeca2fa0c92b85beed94 (patch)
tree1b8329d93e2516b3eb485613feb9108a8d260f28 /pkg/i18n
parentb422692746281ee0707e639b254c21fbeda73604 (diff)
Allow for creating fixup! commits
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go18
-rw-r--r--pkg/i18n/english.go18
-rw-r--r--pkg/i18n/polish.go18
3 files changed, 54 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index d5c3423d5..2a5cd5551 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -700,6 +700,24 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "hardReset",
Other: "hard reset",
+ }, &i18n.Message{
+ ID: "createFixupCommit",
+ Other: `create fixup commit for this commit`,
+ }, &i18n.Message{
+ ID: "squashAboveCommits",
+ Other: `squash above commits`,
+ }, &i18n.Message{
+ ID: "SquashAboveCommits",
+ Other: `Squash above commits`,
+ }, &i18n.Message{
+ ID: "SureSquashAboveCommits",
+ Other: `Are you sure you want to squash all fixup! commits above {{.commit}}?`,
+ }, &i18n.Message{
+ ID: "CreateFixupCommit",
+ Other: `Create fixup commit`,
+ }, &i18n.Message{
+ ID: "SureCreateFixupCommit",
+ Other: `Are you sure you want to create a fixup! commit for commit {{.commit}}?`,
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 5d838cb89..7cebb04d0 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -723,6 +723,24 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "viewResetOptions",
Other: `view reset options`,
+ }, &i18n.Message{
+ ID: "createFixupCommit",
+ Other: `create fixup commit for this commit`,
+ }, &i18n.Message{
+ ID: "squashAboveCommits",
+ Other: `squash above commits`,
+ }, &i18n.Message{
+ ID: "SquashAboveCommits",
+ Other: `Squash above commits`,
+ }, &i18n.Message{
+ ID: "SureSquashAboveCommits",
+ Other: `Are you sure you want to squash all fixup! commits above {{.commit}}?`,
+ }, &i18n.Message{
+ ID: "CreateFixupCommit",
+ Other: `Create fixup commit`,
+ }, &i18n.Message{
+ ID: "SureCreateFixupCommit",
+ Other: `Are you sure you want to create a fixup! commit for commit {{.commit}}?`,
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 38ef84489..1eb2486dc 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -683,6 +683,24 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "viewResetOptions",
Other: `view reset options`,
+ }, &i18n.Message{
+ ID: "createFixupCommit",
+ Other: `create fixup commit for this commit`,
+ }, &i18n.Message{
+ ID: "squashAboveCommits",
+ Other: `squash above commits`,
+ }, &i18n.Message{
+ ID: "SquashAboveCommits",
+ Other: `Squash above commits`,
+ }, &i18n.Message{
+ ID: "SureSquashAboveCommits",
+ Other: `Are you sure you want to squash all fixup! commits above {{.commit}}?`,
+ }, &i18n.Message{
+ ID: "CreateFixupCommit",
+ Other: `Create fixup commit`,
+ }, &i18n.Message{
+ ID: "SureCreateFixupCommit",
+ Other: `Are you sure you want to create a fixup! commit for commit {{.commit}}?`,
},
)
}