Skip to content

Commit 64ffbb1

Browse files
committed
fix: wrong localization key to compare remote branch with current
Signed-off-by: leo <[email protected]>
1 parent 221e964 commit 64ffbb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ViewModels/Repository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2240,7 +2240,7 @@ public ContextMenu CreateContextMenuForRemoteBranch(Models.Branch branch)
22402240
}
22412241

22422242
var compareWithHead = new MenuItem();
2243-
compareWithHead.Header = App.Text("BranchCM.CompareWithHead");
2243+
compareWithHead.Header = App.Text("BranchCM.CompareWithCurrent", _currentBranch.Name);
22442244
compareWithHead.Icon = App.CreateMenuIcon("Icons.Compare");
22452245
compareWithHead.Click += (_, _) =>
22462246
{

0 commit comments

Comments
 (0)