summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-11-17 12:02:39 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-11-21 22:07:14 +1100
commit6b7aaeca45847ebc41aa0fd9b773362d4a79f1ab (patch)
treed8f35e24c44a1474414cd09c76b9ae9d904c6451 /pkg/i18n
parent1f3e1720a3a0bd31c0816a94d0b7c5bca1589f96 (diff)
support adding/removing remotes
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 62c762fdd..135c52bda 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -849,6 +849,21 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "ReturnToRemotesList",
Other: `return to remotes list`,
+ }, &i18n.Message{
+ ID: "addNewRemote",
+ Other: `add new remote`,
+ }, &i18n.Message{
+ ID: "newRemoteName",
+ Other: `New remote name:`,
+ }, &i18n.Message{
+ ID: "newRemoteUrl",
+ Other: `New remote url:`,
+ }, &i18n.Message{
+ ID: "removeRemote",
+ Other: `remove remote`,
+ }, &i18n.Message{
+ ID: "removeRemotePrompt",
+ Other: "Are you sure you want to remove remote",
},
)
}