summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorGiorgio Previtera <gprevitera@equalexperts.com>2019-07-14 14:39:31 +0100
committerJesse Duffield <jessedduffield@gmail.com>2019-10-27 12:39:08 +1100
commitac5cbc1d2cbfc9dd0dd6b9099f034354367d859d (patch)
tree26ba1c26ced6c227f8cc9d90b40095ddfd8e6725 /pkg/i18n
parenta045313e080d2c083425e89cfd8a004cbcf72ef7 (diff)
#480 Allow cycling side panels with number keys
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 eba4dd972..a8b75cbe4 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -751,6 +751,9 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "notARepository",
Other: "Error: must be run inside a git repository",
+ }, &i18n.Message{
+ ID: "jump",
+ Other: "jump to panel",
},
)
}
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 8768d6d7b..2de69d4d6 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -774,6 +774,9 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "notARepository",
Other: "Error: must be run inside a git repository",
+ }, &i18n.Message{
+ ID: "jump",
+ Other: "jump to panel",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index cc2393090..6c55a5d30 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -734,6 +734,9 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "notARepository",
Other: "Error: must be run inside a git repository",
+ }, &i18n.Message{
+ ID: "jump",
+ Other: "jump to panel",
},
)
}