summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-03-11 13:04:08 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-03-16 10:20:27 +1100
commit4f7f6a073ced1b31be6bbac119d1f0f4de229578 (patch)
tree492d67c4e51b4593c74d26e9a46c434f11c267f7 /pkg/i18n
parent0e008cc15f8e7cbb6869151d48ae30403bf4dc70 (diff)
allow user to discard old file changes for a given commit
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 4d2ee4236..13eb1ee0c 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -658,6 +658,15 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "checkoutCommitFile",
Other: "checkout file",
+ }, &i18n.Message{
+ ID: "discardOldFileChange",
+ Other: "discard this commit's changes to this file",
+ }, &i18n.Message{
+ ID: "DiscardFileChangesTitle",
+ Other: "Discard file changes",
+ }, &i18n.Message{
+ ID: "DiscardFileChangesPrompt",
+ Other: "Are you sure you want to discard this commit's changes to this file? If this file was created in this commit, it will be deleted",
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index c9eda4ce6..925b9db38 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -681,6 +681,15 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "checkoutCommitFile",
Other: "checkout file",
+ }, &i18n.Message{
+ ID: "discardOldFileChange",
+ Other: "discard this commit's changes to this file",
+ }, &i18n.Message{
+ ID: "DiscardFileChangesTitle",
+ Other: "Discard file changes",
+ }, &i18n.Message{
+ ID: "DiscardFileChangesPrompt",
+ Other: "Are you sure you want to discard this commit's changes to this file? If this file was created in this commit, it will be deleted",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 30462a7c3..37791d9e5 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -641,6 +641,15 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "checkoutCommitFile",
Other: "checkout file",
+ }, &i18n.Message{
+ ID: "discardOldFileChange",
+ Other: "discard this commit's changes to this file",
+ }, &i18n.Message{
+ ID: "DiscardFileChangesTitle",
+ Other: "Discard file changes",
+ }, &i18n.Message{
+ ID: "DiscardFileChangesPrompt",
+ Other: "Are you sure you want to discard this commit's changes to this file? If this file was created in this commit, it will be deleted",
},
)
}