summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuki Osaki <yuki.osaki7@gamail.com>2020-11-28 13:38:14 +0900
committerJesse Duffield <jessedduffield@gmail.com>2020-11-28 19:19:47 +1100
commit90ade3225f55652d40c6f0266e50f5328390f02b (patch)
treee3d50f57b21e67be098b08ff366e31643562af0e
parent4928d1d490becaac9464ac1d6217ab60382791cc (diff)
Add lc prefix
-rw-r--r--pkg/gui/keybindings.go2
-rw-r--r--pkg/i18n/dutch.go2
-rw-r--r--pkg/i18n/english.go4
-rw-r--r--pkg/i18n/polish.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index bfbacea63..938807390 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -363,7 +363,7 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
ViewName: "status",
Key: gui.getKey(config.Status.AllBranchesLogGraph),
Handler: gui.wrappedHandler(gui.handleShowAllBranchLogs),
- Description: gui.Tr.AllBranchesLogGraph,
+ Description: gui.Tr.LcAllBranchesLogGraph,
},
{
ViewName: "files",
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 332fe5cc3..87d0196a7 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -152,7 +152,7 @@ func dutchTranslationSet() TranslationSet {
LcMergeIntoCurrentBranch: `merge in met huidige checked out branch`,
ConfirmQuit: `Weet je zeker dat je dit programma wil sluiten?`,
SwitchRepo: "wissel naar een recente repo",
- AllBranchesLogGraph: `alle takken van het houtblok laten zien`,
+ LcAllBranchesLogGraph: `alle takken van het houtblok laten zien`,
UnsupportedGitService: `Niet-ondersteunde git-service`,
LcCreatePullRequest: `maak een pull-aanvraag`,
LcCopyPullRequestURL: `kopieer de URL van het pull-verzoek naar het klembord`,
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 93ccc75a6..7bd509301 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -164,7 +164,7 @@ type TranslationSet struct {
LcMergeIntoCurrentBranch string
ConfirmQuit string
SwitchRepo string
- AllBranchesLogGraph string
+ LcAllBranchesLogGraph string
UnsupportedGitService string
LcCreatePullRequest string
LcCopyPullRequestURL string
@@ -667,7 +667,7 @@ func englishTranslationSet() TranslationSet {
LcMergeIntoCurrentBranch: `merge into currently checked out branch`,
ConfirmQuit: `Are you sure you want to quit?`,
SwitchRepo: `switch to a recent repo`,
- AllBranchesLogGraph: `show all branch logs`,
+ LcAllBranchesLogGraph: `show all branch logs`,
UnsupportedGitService: `Unsupported git service`,
LcCreatePullRequest: `create pull request`,
LcCopyPullRequestURL: `copy pull request URL to clipboard`,
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 9b9e64d20..005e0b578 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -125,7 +125,7 @@ func polishTranslationSet() TranslationSet {
LcRefreshFiles: `odśwież pliki`,
LcMergeIntoCurrentBranch: `scal do obecnej gałęzi`,
ConfirmQuit: `Na pewno chcesz wyjść z programu?`,
- AllBranchesLogGraph: `pokazywać wszystkie logi branżowe`,
+ LcAllBranchesLogGraph: `pokazywać wszystkie logi branżowe`,
UnsupportedGitService: `Nieobsługiwana usługa git`,
LcCreatePullRequest: `utwórz żądanie wyciągnięcia`,
LcCopyPullRequestURL: `skopiuj adres URL żądania ściągnięcia do schowka`,