summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-05-27 14:14:43 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-03 12:54:13 +1000
commita9e2c8129f6e1cdfd58446d7ce5080fcabc2ea04 (patch)
tree272c6f737052d6e06f71c6e1e9ce355410238f1a /pkg/i18n
parentfd861826bc11754caf4ee4651dbadf9544792d1f (diff)
Introduce filtered list view model
We're going to start supporting filtering of list views
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index b803df360..e59d5e4df 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -371,6 +371,7 @@ type TranslationSet struct {
NextScreenMode string
PrevScreenMode string
StartSearch string
+ StartFilter string
Panel string
Keybindings string
KeybindingsLegend string
@@ -536,6 +537,7 @@ type TranslationSet struct {
MatchesFor string
SearchKeybindings string
SearchPrefix string
+ FilterPrefix string
ExitSearchMode string
Actions Actions
Bisect Bisect
@@ -1061,7 +1063,8 @@ func EnglishTranslationSet() TranslationSet {
ViewResetToUpstreamOptions: "View upstream reset options",
NextScreenMode: "Next screen mode (normal/half/fullscreen)",
PrevScreenMode: "Prev screen mode",
- StartSearch: "Start search",
+ StartSearch: "Search the current view",
+ StartFilter: "Filter the current view",
Panel: "Panel",
KeybindingsLegend: "Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b",
RenameBranch: "Rename branch",
@@ -1226,6 +1229,7 @@ func EnglishTranslationSet() TranslationSet {
MatchesFor: "matches for '%s' (%d of %d) %s", // lowercase because it's after other text
SearchKeybindings: "%s: Next match, %s: Previous match, %s: Exit search mode",
SearchPrefix: "Search: ",
+ FilterPrefix: "Filter: ",
Actions: Actions{
// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
CheckoutCommit: "Checkout commit",