Skip to content

Commit fc0dff3

Browse files
committed
fix arg number
1 parent 70f972a commit fc0dff3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ class AcceptChangesContribution extends Disposable implements IEditorContributio
11931193
: localize('Sync accept merges', "Preferences Sync: {0}", acceptMergesLabel),
11941194
message: isRemote
11951195
? localize('confirm replace and overwrite local', "Would you like to accept remote {0} and replace local {1}?", syncAreaLabel.toLowerCase(), syncAreaLabel.toLowerCase())
1196-
: localize('confirm replace and overwrite remote', "Would you like to accept merges and replace remote {1}?", syncAreaLabel.toLowerCase()),
1196+
: localize('confirm replace and overwrite remote', "Would you like to accept merges and replace remote {0}?", syncAreaLabel.toLowerCase()),
11971197
primaryButton: isRemote ? acceptRemoteLabel : acceptMergesLabel
11981198
});
11991199
if (result.confirmed) {

0 commit comments

Comments
 (0)