**Current behavior:** - Validation errors produced by `yaml-language-server` are always in English. - For example: `Value is above the maximum of 9500`. **Problem:** - Applications embedding `monaco-yaml` want to show validation errors in the user's preferred language. - AJV (which `yaml-language-server` uses) already supports [ajv-i18n](https://ajv.js.org/packages/ajv-i18n.html), but there’s no way to configure or enable it in `yaml-language-server`. **Proposed solution:** - Add a configuration option to specify which `ajv-i18n` localization should be applied to AJV error messages. - Example configuration: ```json { "yaml.validation.language": "fr" }