1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00

Rename NoTags to CommitHasNoTags

This commit is contained in:
Bruno Jesus
2025-01-28 23:11:06 +00:00
parent 632695f71c
commit 698f9287d4
2 changed files with 3 additions and 3 deletions

View File

@ -176,7 +176,7 @@ func (self *BasicCommitsController) copyCommitAttribute(commit *models.Commit) e
}
if len(commit.Tags) == 0 {
commitTagsItem.DisabledReason = &types.DisabledReason{Text: self.c.Tr.NoTags}
commitTagsItem.DisabledReason = &types.DisabledReason{Text: self.c.Tr.CommitHasNoTags}
}
items = append(items, &commitTagsItem)