@@ -97,15 +97,15 @@ + (PBRefMenuItem *) separatorItem
97
97
[items addObject: [PBRefMenuItem separatorItem ]];
98
98
99
99
// create branch
100
- NSString *createBranchTitle = [ref isRemoteBranch ] ? [NSString stringWithFormat: @" Create branch that tracks %@ …" , refName] : @" Create Branch…" ;
100
+ NSString *createBranchTitle = [ref isRemoteBranch ] ? [NSString stringWithFormat: @" Create Branch tracking %@ …" , refName] : @" Create Branch…" ;
101
101
[items addObject: [PBRefMenuItem itemWithTitle: createBranchTitle action: @selector (createBranch: ) enabled: YES ]];
102
102
103
103
// create tag
104
104
[items addObject: [PBRefMenuItem itemWithTitle: @" Create Tag…" action: @selector (createTag: ) enabled: YES ]];
105
105
106
106
// view tag info
107
107
if ([ref isTag ])
108
- [items addObject: [PBRefMenuItem itemWithTitle: @" View tag info …" action: @selector (showTagInfoSheet: ) enabled: YES ]];
108
+ [items addObject: [PBRefMenuItem itemWithTitle: @" View Tag Info …" action: @selector (showTagInfoSheet: ) enabled: YES ]];
109
109
110
110
// Diff
111
111
NSString *diffTitle = [NSString stringWithFormat: @" Diff with %@ " , headRefName];
@@ -128,13 +128,13 @@ + (PBRefMenuItem *) separatorItem
128
128
[items addObject: [PBRefMenuItem itemWithTitle: fetchTitle action: @selector (fetchRemote: ) enabled: hasRemote]];
129
129
130
130
// pull
131
- NSString *pullTitle = hasRemote ? [NSString stringWithFormat: @" Pull %@ and update %@ " , remoteName, headRefName] : @" Pull" ;
131
+ NSString *pullTitle = hasRemote ? [NSString stringWithFormat: @" Pull %@ and Update %@ " , remoteName, headRefName] : @" Pull" ;
132
132
[items addObject: [PBRefMenuItem itemWithTitle: pullTitle action: @selector (pullRemote: ) enabled: hasRemote]];
133
133
134
134
// push
135
135
if (isRemote || [ref isRemoteBranch ]) {
136
136
// push updates to remote
137
- NSString *pushTitle = [NSString stringWithFormat: @" Push updates to %@ " , remoteName];
137
+ NSString *pushTitle = [NSString stringWithFormat: @" Push Updates to %@ " , remoteName];
138
138
[items addObject: [PBRefMenuItem itemWithTitle: pushTitle action: @selector (pushUpdatesToRemote: ) enabled: YES ]];
139
139
}
140
140
else if (isDetachedHead) {
@@ -219,15 +219,15 @@ + (PBRefMenuItem *) separatorItem
219
219
[items addObject: [PBRefMenuItem separatorItem ]];
220
220
221
221
// merge commit
222
- NSString *mergeTitle = isOnHeadBranch ? @" Merge commit " : [NSString stringWithFormat: @" Merge commit into %@ " , headBranchName];
222
+ NSString *mergeTitle = isOnHeadBranch ? @" Merge Commit " : [NSString stringWithFormat: @" Merge Commit into %@ " , headBranchName];
223
223
[items addObject: [PBRefMenuItem itemWithTitle: mergeTitle action: @selector (merge: ) enabled: !isOnHeadBranch]];
224
224
225
225
// cherry pick
226
- NSString *cherryPickTitle = isOnHeadBranch ? @" Cherry pick commit " : [NSString stringWithFormat: @" Cherry pick commit to %@ " , headBranchName];
226
+ NSString *cherryPickTitle = isOnHeadBranch ? @" Cherry Pick Commit " : [NSString stringWithFormat: @" Cherry Pick Commit to %@ " , headBranchName];
227
227
[items addObject: [PBRefMenuItem itemWithTitle: cherryPickTitle action: @selector (cherryPick: ) enabled: !isOnHeadBranch]];
228
228
229
229
// rebase
230
- NSString *rebaseTitle = isOnHeadBranch ? @" Rebase commit " : [NSString stringWithFormat: @" Rebase %@ on commit " , headBranchName];
230
+ NSString *rebaseTitle = isOnHeadBranch ? @" Rebase Commit " : [NSString stringWithFormat: @" Rebase %@ on Commit " , headBranchName];
231
231
[items addObject: [PBRefMenuItem itemWithTitle: rebaseTitle action: @selector (rebaseHeadBranch: ) enabled: !isOnHeadBranch]];
232
232
}
233
233
0 commit comments