@@ -104,7 +104,7 @@ export class ConflictActionsFactory extends Disposable {
104
104
if ( ! state . conflicting && ! state . isInputIncluded ( inputNumber ) ) {
105
105
result . push (
106
106
! state . isInputIncluded ( inputNumber )
107
- ? command ( localize ( 'accept' , "$(pass) Accept {0}" , inputData . title ) , async ( ) => {
107
+ ? command ( localize ( 'accept' , "Accept {0}" , inputData . title ) , async ( ) => {
108
108
transaction ( ( tx ) => {
109
109
model . setState (
110
110
modifiedBaseRange ,
@@ -114,7 +114,7 @@ export class ConflictActionsFactory extends Disposable {
114
114
) ;
115
115
} ) ;
116
116
} )
117
- : command ( localize ( 'remove' , "$(error) Remove {0}" , inputData . title ) , async ( ) => {
117
+ : command ( localize ( 'remove' , "Remove {0}" , inputData . title ) , async ( ) => {
118
118
transaction ( ( tx ) => {
119
119
model . setState (
120
120
modifiedBaseRange ,
@@ -129,7 +129,7 @@ export class ConflictActionsFactory extends Disposable {
129
129
if ( modifiedBaseRange . canBeCombined && state . isEmpty ) {
130
130
result . push (
131
131
state . input1 && state . input2
132
- ? command ( localize ( 'removeBoth' , "$(error) Remove Both" ) , async ( ) => {
132
+ ? command ( localize ( 'removeBoth' , "Remove Both" ) , async ( ) => {
133
133
transaction ( ( tx ) => {
134
134
model . setState (
135
135
modifiedBaseRange ,
@@ -139,7 +139,7 @@ export class ConflictActionsFactory extends Disposable {
139
139
) ;
140
140
} ) ;
141
141
} )
142
- : command ( localize ( 'acceptBoth' , "$(pass) Accept Both" ) , async ( ) => {
142
+ : command ( localize ( 'acceptBoth' , "Accept Both" ) , async ( ) => {
143
143
transaction ( ( tx ) => {
144
144
model . setState (
145
145
modifiedBaseRange ,
@@ -204,7 +204,7 @@ export class ConflictActionsFactory extends Disposable {
204
204
205
205
const stateToggles : IContentWidgetAction [ ] = [ ] ;
206
206
if ( state . input1 ) {
207
- result . push ( command ( localize ( 'remove' , "$(error) Remove {0}" , model . input1 . title ) , async ( ) => {
207
+ result . push ( command ( localize ( 'remove' , "Remove {0}" , model . input1 . title ) , async ( ) => {
208
208
transaction ( ( tx ) => {
209
209
model . setState (
210
210
modifiedBaseRange ,
@@ -217,7 +217,7 @@ export class ConflictActionsFactory extends Disposable {
217
217
) ;
218
218
}
219
219
if ( state . input2 ) {
220
- result . push ( command ( localize ( 'remove' , "$(error) Remove {0}" , model . input2 . title ) , async ( ) => {
220
+ result . push ( command ( localize ( 'remove' , "Remove {0}" , model . input2 . title ) , async ( ) => {
221
221
transaction ( ( tx ) => {
222
222
model . setState (
223
223
modifiedBaseRange ,
@@ -238,7 +238,7 @@ export class ConflictActionsFactory extends Disposable {
238
238
239
239
if ( state . conflicting ) {
240
240
result . push (
241
- command ( localize ( 'resetToBase' , "$(error) Reset to base" ) , async ( ) => {
241
+ command ( localize ( 'resetToBase' , "Reset to base" ) , async ( ) => {
242
242
transaction ( ( tx ) => {
243
243
model . setState (
244
244
modifiedBaseRange ,
0 commit comments