1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-19 22:33:16 +02:00

better titles

This commit is contained in:
Jesse Duffield 2019-11-05 18:50:35 +11:00
parent 72fe770974
commit 326b1ca8c9
2 changed files with 7 additions and 3 deletions

View File

@ -14,6 +14,7 @@ func (gui *Gui) contextTitleMap() map[string]map[string]string {
return map[string]map[string]string{ return map[string]map[string]string{
"main": { "main": {
"staging": gui.Tr.SLocalize("StagingMainTitle"), "staging": gui.Tr.SLocalize("StagingMainTitle"),
"patch-building": gui.Tr.SLocalize("PatchBuildingMainTitle"),
"merging": gui.Tr.SLocalize("MergingMainTitle"), "merging": gui.Tr.SLocalize("MergingMainTitle"),
"normal": "", "normal": "",
}, },

View File

@ -48,6 +48,9 @@ func addEnglish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{ }, &i18n.Message{
ID: "StagingMainTitle", ID: "StagingMainTitle",
Other: `Stage Lines/Hunks`, Other: `Stage Lines/Hunks`,
}, &i18n.Message{
ID: "PatchBuildingMainTitle",
Other: `Add Lines/Hunks To Patch`,
}, &i18n.Message{ }, &i18n.Message{
ID: "MergingMainTitle", ID: "MergingMainTitle",
Other: "Resolve merge conflicts", Other: "Resolve merge conflicts",