From a196c4192aca78b1f2f5f4e2cfdc01195455997c Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Fri, 27 Oct 2023 09:20:29 +0200 Subject: [PATCH] Merge localization fix --- CHANGELOG.md | 6 ++++++ package.json | 2 +- package.nls.json | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c0b45ee..a9a97cb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,12 @@ - [#694](https://github.com/estruyf/vscode-front-matter/issues/694): Start terminal session from the folder where the `frontmatter.json` file is located - [#696](https://github.com/estruyf/vscode-front-matter/issues/696): Close the local server terminal on restart +## [9.3.1] - 2023-10-27 + +### 🐞 Fixes + +- [#697](https://github.com/estruyf/vscode-front-matter/issues/697): Fix missing localization key + ## [9.3.0] - 2023-10-06 - [Release notes](https://beta.frontmatter.codes/updates/v9.3.0) ### ✨ New features diff --git a/package.json b/package.json index d39689d8..65797d8f 100644 --- a/package.json +++ b/package.json @@ -1004,7 +1004,7 @@ "frontMatter.panel.actions.disabled": { "type": "array", "default": [], - "markdownDescription": "%setting.frontMatter.panel.actions.disabeld.markdownDescription%", + "markdownDescription": "%setting.frontMatter.panel.actions.disabled.markdownDescription%", "enum": [ "openDashboard", "createContent", diff --git a/package.nls.json b/package.nls.json index db88d8bc..99500177 100644 --- a/package.nls.json +++ b/package.nls.json @@ -154,6 +154,7 @@ "setting.frontMatter.media.defaultSorting.markdownDescription": "Specify the default sorting option for the media dashboard. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.media.defaultsorting)", "setting.frontMatter.media.supportedMimeTypes.markdownDescription": "Specify the mime types to support for the media files. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.media.supportedmimetypes)", "setting.frontMatter.panel.freeform.markdownDescription": "Specifies if you want to allow yourself from entering unknown tags/categories in the tag picker (when enabled, you will have the option to store them afterwards). Default: true. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.panel.freeform)", + "setting.frontMatter.panel.actions.disabled.markdownDescription": "Specify the actions you want to disable in the panel. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.panel.actions.disabled)", "setting.frontMatter.preview.host.markdownDescription": "Specify the host URL (example: http://localhost:1313) to be used when opening the preview. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.preview.host)", "setting.frontMatter.preview.pathName.markdownDescription": "Specify the path you want to add after the host and before your slug. This can be used for instance to include the year/month like: `yyyy/MM`. The date will be generated based on the article its date field value. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.preview.pathname)", "setting.frontMatter.site.baseURL.markdownDescription": "Specify the base URL of your site, this will be used for SEO checks. [Check in the docs](https://frontmatter.codes/docs/settings/overview#frontmatter.site.baseurl)",