@difizen/libro-markdown 0.2.35 → 0.2.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/es/config.js CHANGED
@@ -2,7 +2,7 @@ import { l10n } from '@difizen/mana-l10n';
2
2
  export var LibroConfigLinkTargetToBlank = {
3
3
  id: 'libro.markdown.link.target.to.blank',
4
4
  description: l10n.t('markdown的a标签是否另起一页'),
5
- title: 'a标签另起一页',
5
+ title: l10n.t('a标签另起一页'),
6
6
  type: 'checkbox',
7
7
  defaultValue: true,
8
8
  schema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-markdown",
3
- "version": "0.2.35",
3
+ "version": "0.2.36",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
package/src/config.ts CHANGED
@@ -4,7 +4,7 @@ import { l10n } from '@difizen/mana-l10n';
4
4
  export const LibroConfigLinkTargetToBlank: ConfigurationNode<boolean> = {
5
5
  id: 'libro.markdown.link.target.to.blank',
6
6
  description: l10n.t('markdown的a标签是否另起一页'),
7
- title: 'a标签另起一页',
7
+ title: l10n.t('a标签另起一页'),
8
8
  type: 'checkbox',
9
9
  defaultValue: true,
10
10
  schema: {