Skip to content

Commit 9db2563

Browse files
committed
microsoft#91584 convert to lower case
1 parent 3b6b125 commit 9db2563

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo
290290
const conflictsEditorInput = this.getConflictsEditorInput(conflictsSource);
291291
if (!conflictsEditorInput && !this.conflictsDisposables.has(conflictsSource)) {
292292
const conflictsArea = getSyncAreaLabel(conflictsSource);
293-
const handle = this.notificationService.prompt(Severity.Warning, localize('conflicts detected', "Unable to sync due to conflicts in {0}. Please resolve them to continue.", conflictsArea),
293+
const handle = this.notificationService.prompt(Severity.Warning, localize('conflicts detected', "Unable to sync due to conflicts in {0}. Please resolve them to continue.", conflictsArea.toLowerCase()),
294294
[
295295
{
296296
label: localize('accept remote', "Accept Remote"),
@@ -1133,8 +1133,8 @@ class AcceptChangesContribution extends Disposable implements IEditorContributio
11331133
? localize('Sync accept remote', "Sync: {0}", acceptRemoteLabel)
11341134
: localize('Sync accept local', "Sync: {0}", acceptLocalLabel),
11351135
message: isRemote
1136-
? localize('confirm replace and overwrite local', "Would you like to accept Remote {0} and replace Local {1}?", syncAreaLabel, syncAreaLabel)
1137-
: localize('confirm replace and overwrite remote', "Would you like to accept Local {0} and replace Remote {1}?", syncAreaLabel, syncAreaLabel),
1136+
? localize('confirm replace and overwrite local', "Would you like to accept Remote {0} and replace Local {1}?", syncAreaLabel.toLowerCase(), syncAreaLabel.toLowerCase())
1137+
: localize('confirm replace and overwrite remote', "Would you like to accept Local {0} and replace Remote {1}?", syncAreaLabel.toLowerCase(), syncAreaLabel.toLowerCase()),
11381138
primaryButton: isRemote ? acceptRemoteLabel : acceptLocalLabel
11391139
});
11401140
if (result.confirmed) {

0 commit comments

Comments
 (0)