Skip to content

Commit

Permalink
Remove extra . in strings for openInEditor command
Browse files Browse the repository at this point in the history
  • Loading branch information
juliasilge committed Dec 10, 2024
1 parent 22cac71 commit aaab68b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { DisposableStore } from 'vs/base/common/lifecycle';
const reload = localize('positron.preview.html.reload', "Reload the content");
const clear = localize('positron.preview.html.clear', "Clear the content");
const openInBrowser = localize('positron.preview.html.openInBrowser', "Open the content in the default browser");
const openInEditor = localize('positron.preview.html.openInEditor', "Open the content in an editor tab.");
const openInEditor = localize('positron.preview.html.openInEditor', "Open the content in an editor tab");

/**
* HtmlActionBarsProps interface.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const reload = localize('positron.preview.reload', "Reload the current URL");
const clear = localize('positron.preview.clear', "Clear the current URL");
const openInBrowser = localize('positron.preview.openInBrowser', "Open the current URL in the default browser");
const currentUrl = localize('positron.preview.currentUrl', "The current URL");
const openInEditor = localize('positron.preview.html.openInEditor', "Open the content in an editor tab.");
const openInEditor = localize('positron.preview.html.openInEditor', "Open the content in an editor tab");

/**
* UrlActionBars component.
Expand Down

0 comments on commit aaab68b

Please sign in to comment.