Skip to content

Commit 42ff0ec

Browse files
committed
fix(lib/vscode): update dialogHandler
Looks like a minor update to the localization for the detailString which I believe shows up when you go to Help:About.
1 parent d1ad3fa commit 42ff0ec

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/vscode/src/vs/workbench/browser/parts/dialogs/dialogHandler.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,8 @@ export class BrowserDialogHandler implements IDialogHandler {
121121

122122
async about(): Promise<void> {
123123
const detailString = (useAgo: boolean): string => {
124-
<<<<<<< HEAD
125-
return nls.localize('aboutDetail',
126-
"code-server: v{4}\n VS Code: v{0}\nCommit: {1}\nDate: {2}\nBrowser: {3}",
127-
=======
128124
return localize('aboutDetail',
129-
"Version: {0}\nCommit: {1}\nDate: {2}\nBrowser: {3}",
130-
>>>>>>> e8cd17a97d8c58fffcbac05394b3ee2b3c72d384
125+
"code-server: v{4}\n VS Code: v{0}\nCommit: {1}\nDate: {2}\nBrowser: {3}",
131126
this.productService.version || 'Unknown',
132127
this.productService.commit || 'Unknown',
133128
this.productService.date ? `${this.productService.date}${useAgo ? ' (' + fromNow(new Date(this.productService.date), true) + ')' : ''}` : 'Unknown',

0 commit comments

Comments
 (0)