Skip to content

Commit

Permalink
Merge pull request #83862 from rebornix/rebornix/web
Browse files Browse the repository at this point in the history
Update Welcome Page header in web.
  • Loading branch information
rebornix committed Nov 1, 2019
2 parents d953e5c + bf14579 commit 77607b3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
*--------------------------------------------------------------------------------------------*/

import { escape } from 'vs/base/common/strings';
import { isWeb } from 'vs/base/common/platform';
import { localize } from 'vs/nls';

export default () => `
<div class="welcomePageContainer">
<div class="welcomePage">
<div class="title">
<h1 class="caption">${escape(localize('welcomePage.vscode', "Visual Studio Code"))}</h1>
<h1 class="caption">${escape(isWeb ? localize('welcomePage.vsonline', "Visual Studio Online") : localize('welcomePage.vscode', "Visual Studio Code"))}</h1>
<p class="subtitle detail">${escape(localize({ key: 'welcomePage.editingEvolved', comment: ['Shown as subtitle on the Welcome page.'] }, "Editing evolved"))}</p>
</div>
<div class="row">
Expand Down

0 comments on commit 77607b3

Please sign in to comment.