Skip to content

Commit e40b574

Browse files
authored
docs(vscode): fix Japanese translation of configurations and commands (#5404)
1 parent d94c100 commit e40b574

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

extensions/vscode/package.nls.ja.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"configuration.trace.server": "VS Code と Vue 言語サーバー間の通信をトレースします。",
3-
"configuration.server.includeLanguages": "拡張機能がアクティブになる言語を構成します",
4-
"configuration.splitEditors.icon": "エディターのタイトル領域に分割エディターのアイコンを表示します",
5-
"configuration.splitEditors.layout.left": "左分割エディターのブロック",
6-
"configuration.splitEditors.layout.right": "右分割エディターのブロック",
3+
"configuration.server.includeLanguages": "拡張機能を有効にする言語を指定します",
4+
"configuration.splitEditors.icon": "エディターのタイトル領域にエディター分割ボタンを表示します",
5+
"configuration.splitEditors.layout.left": "左側の分割されたエディターに含めるブロック",
6+
"configuration.splitEditors.layout.right": "右側の分割されたエディターに含めるブロック",
77
"configuration.codeActions.enabled": "コードアクションを有効にします。",
88
"configuration.codeActions.askNewComponentName": "コンポーネントを抽出する時に新しいコンポーネント名を尋ねます。",
9-
"configuration.codeLens.enabled": "コード透鏡を有効にします",
10-
"configuration.complete.casing.tags": "タグ名のケース",
11-
"configuration.complete.casing.props": "属性名のケース",
12-
"configuration.complete.defineAssignment": "補完項目 `props` を選択する時に `defineProps` の前に `const props = ` を自動で追加します。(`emit` と `slots` も同様)",
9+
"configuration.codeLens.enabled": "コードレンズを有効にします",
10+
"configuration.complete.casing.tags": "タグ名の命名規則",
11+
"configuration.complete.casing.props": "属性名の命名規則",
12+
"configuration.complete.defineAssignment": "補完項目 `props` を選択した時に `const props = ` を `defineProps` の前に自動で追加します。(`emit` と `slots` も同様)",
1313
"configuration.autoInsert.dotValue": "Ref 値に `.value` を自動で追加します。",
14-
"configuration.autoInsert.bracketSpacing": "ダブルクォーテーションの前後にスペースを自動で追加します",
15-
"configuration.inlayHints.destructuredProps": "解構された props のインレイ ヒントを表示します\n\n```ts\nwatch(() => /* props. */foo, () => { ... });\n```",
16-
"configuration.inlayHints.missingProps": "不足している必要な属性のインレイ ヒントを表示します\n\n```html\n<Comp />\n<!-- ^ foo! -->\n```",
17-
"configuration.inlayHints.inlineHandlerLeading": "インラインハンドラーの引数のインレイ ヒントを表示します\n\n```html\n<Comp @foo=\"/* $event => */console.log($event)\" />\n```",
18-
"configuration.inlayHints.optionsWrapper": "コンポーネントオプションラッパーのインレイ ヒントを表示します\n\n```vue\n<script lang=\"ts\">\nexport default /* (await import('vue')).defineComponent( */{}/* ) */;\n</script>\n```",
19-
"configuration.inlayHints.vBindShorthand": "v-bind のショートハンドのインレイ ヒントを表示します\n\n```html\n<Comp :foo />\n <!-- ^ =\"foo\" -->\n```",
20-
"configuration.format.template.initialIndent": "テンプレートブロックの初期インデント",
21-
"configuration.format.script.initialIndent": "スクリプトブロックの初期インデント",
22-
"configuration.format.style.initialIndent": "スタイルブロックの初期インデント",
14+
"configuration.autoInsert.bracketSpacing": "二重中括弧で括られた内側にスペースを自動で追加します",
15+
"configuration.inlayHints.destructuredProps": "分割代入された props のインレイヒントを表示します\n\n```ts\nwatch(() => /* props. */foo, () => { ... });\n```",
16+
"configuration.inlayHints.missingProps": "不足している必須属性のインレイヒントを表示します\n\n```html\n<Comp />\n<!-- ^ foo! -->\n```",
17+
"configuration.inlayHints.inlineHandlerLeading": "インラインハンドラーのイベント引数のインレイヒントを表示します\n\n```html\n<Comp @foo=\"/* $event => */console.log($event)\" />\n```",
18+
"configuration.inlayHints.optionsWrapper": "コンポーネントオプションラッパーのインレイヒントを表示します\n\n```vue\n<script lang=\"ts\">\nexport default /* (await import('vue')).defineComponent( */{}/* ) */;\n</script>\n```",
19+
"configuration.inlayHints.vBindShorthand": "v-bind の省略記法のインレイヒントを表示します\n\n```html\n<Comp :foo />\n <!-- ^ =\"foo\" -->\n```",
20+
"configuration.format.template.initialIndent": "`<template>` ブロックの初期インデント",
21+
"configuration.format.script.initialIndent": "`<script>` ブロックの初期インデント",
22+
"configuration.format.style.initialIndent": "`<style>` ブロックの初期インデント",
2323
"configuration.format.wrapAttributes": "属性を折り返します。",
2424
"command.action.restartServer": "Vue と TS サーバーを再起動",
25-
"command.action.splitEditors": "スクリプト、テンプレート、スタイルエディターを分割"
25+
"command.action.splitEditors": "<script>、<template>、<style> エディターを分割"
2626
}

0 commit comments

Comments
 (0)