Change VS Code to SQL Ops Studio in screen reader dialog (#1448)

This commit is contained in:
Karl Burtram
2018-05-21 10:45:39 -07:00
committed by GitHub
parent 0b771abad2
commit 5de002e5c1

View File

@@ -1285,7 +1285,8 @@ class ScreenReaderDetectedExplanation {
}));
domNode.appendChild(closeBtn);
const question = $('p.question', {}, nls.localize('screenReaderDetectedExplanation.question', "Are you using a screen reader to operate VS Code?"));
// {{SQL CARBON EDIT}}
const question = $('p.question', {}, nls.localize('screenReaderDetectedExplanation.question', "Are you using a screen reader to operate SQL Operations Studio?"));
domNode.appendChild(question);
const buttonContainer = $('div.buttons');
@@ -1317,7 +1318,8 @@ class ScreenReaderDetectedExplanation {
const hr = $('hr');
domNode.appendChild(hr);
const explanation1 = $('p.body1', {}, nls.localize('screenReaderDetectedExplanation.body1', "VS Code is now optimized for usage with a screen reader."));
// {{SQL CARBON EDIT}}
const explanation1 = $('p.body1', {}, nls.localize('screenReaderDetectedExplanation.body1', "SQL Operations Studio is now optimized for usage with a screen reader."));
domNode.appendChild(explanation1);
const explanation2 = $('p.body2', {}, nls.localize('screenReaderDetectedExplanation.body2', "Some editor features will have different behaviour: e.g. word wrapping, folding, etc."));