summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-03-03 16:11:20 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-03-03 16:11:20 +1100
commit43758cbb5f8c61d29d3f437a40d43daf2cebbfec (patch)
tree75a69f37f7195c9a579b422e1638f5c99b7e7943 /pkg/i18n
parent00790151025ad58a0bf2b0913c5dd4983fc65b24 (diff)
i18n for rebase loading states
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go21
-rw-r--r--pkg/i18n/english.go21
-rw-r--r--pkg/i18n/polish.go21
3 files changed, 63 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 6f0ec66dd..9c0b63b90 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -622,6 +622,27 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "DeleteCommitPrompt",
Other: "Are you sure you want to delete this commit?",
+ }, &i18n.Message{
+ ID: "SquashingStatus",
+ Other: "squashing",
+ }, &i18n.Message{
+ ID: "FixingStatus",
+ Other: "fixing up",
+ }, &i18n.Message{
+ ID: "DeletingStatus",
+ Other: "deleting",
+ }, &i18n.Message{
+ ID: "MovingStatus",
+ Other: "moving",
+ }, &i18n.Message{
+ ID: "RebasingStatus",
+ Other: "rebasing",
+ }, &i18n.Message{
+ ID: "AmendingStatus",
+ Other: "amending",
+ }, &i18n.Message{
+ ID: "CherryPickingStatus",
+ Other: "cherry-picking",
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 3727d30ce..d397398ae 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -645,6 +645,27 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "DeleteCommitPrompt",
Other: "Are you sure you want to delete this commit?",
+ }, &i18n.Message{
+ ID: "SquashingStatus",
+ Other: "squashing",
+ }, &i18n.Message{
+ ID: "FixingStatus",
+ Other: "fixing up",
+ }, &i18n.Message{
+ ID: "DeletingStatus",
+ Other: "deleting",
+ }, &i18n.Message{
+ ID: "MovingStatus",
+ Other: "moving",
+ }, &i18n.Message{
+ ID: "RebasingStatus",
+ Other: "rebasing",
+ }, &i18n.Message{
+ ID: "AmendingStatus",
+ Other: "amending",
+ }, &i18n.Message{
+ ID: "CherryPickingStatus",
+ Other: "cherry-picking",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 6cef94b2c..8fb7c5e88 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -605,6 +605,27 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "DeleteCommitPrompt",
Other: "Are you sure you want to delete this commit?",
+ }, &i18n.Message{
+ ID: "SquashingStatus",
+ Other: "squashing",
+ }, &i18n.Message{
+ ID: "FixingStatus",
+ Other: "fixing up",
+ }, &i18n.Message{
+ ID: "DeletingStatus",
+ Other: "deleting",
+ }, &i18n.Message{
+ ID: "MovingStatus",
+ Other: "moving",
+ }, &i18n.Message{
+ ID: "RebasingStatus",
+ Other: "rebasing",
+ }, &i18n.Message{
+ ID: "AmendingStatus",
+ Other: "amending",
+ }, &i18n.Message{
+ ID: "CherryPickingStatus",
+ Other: "cherry-picking",
},
)
}