File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -74,10 +74,10 @@ async function importFile(file: CurrentFile, ignoreConflict?: boolean): Promise<
74
74
if ( error . statusCode == 409 ) {
75
75
return vscode . window
76
76
. showErrorMessage (
77
- `Failed to import '${ file . name } ': The content of the file on the server is newer.
78
- Please compare your version with the file contents or overwrite the content of the file with your changes. `,
77
+ `Failed to import '${ file . name } ': The version of the file on the server is newer.
78
+ What do you want to do? `,
79
79
"Compare" ,
80
- "Overwrite" ,
80
+ "Overwrite on Server " ,
81
81
"Pull Server Changes" ,
82
82
"Cancel"
83
83
)
@@ -92,18 +92,18 @@ Please compare your version with the file contents or overwrite the content of t
92
92
scheme : OBJECTSCRIPT_FILE_SCHEMA ,
93
93
authority : file . workspaceFolder ,
94
94
} ) ,
95
- `Local • ${ file . fileName } ↔ Remote • ${ file . name } `
95
+ `Local • ${ file . fileName } ↔ Server • ${ file . name } `
96
96
)
97
97
. then ( ( ) => Promise . reject ( ) ) ;
98
- case "Overwrite" :
98
+ case "Overwrite on Server " :
99
99
return importFile ( file , true ) ;
100
100
case "Pull Server Changes" :
101
101
outputChannel . appendLine ( `${ file . name } : Loading changes from server` ) ;
102
102
outputChannel . show ( true ) ;
103
103
loadChanges ( [ file ] ) ;
104
104
return Promise . reject ( ) ;
105
105
case "Cancel" :
106
- outputChannel . appendLine ( `${ file . name } : Import and Compile canceled by user` ) ;
106
+ outputChannel . appendLine ( `${ file . name } : Import and Compile canceled by user` ) ;
107
107
outputChannel . show ( true ) ;
108
108
return Promise . reject ( ) ;
109
109
}
You can’t perform that action at this time.
0 commit comments