mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-25 14:20:30 -04:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"diff.tooLarge": "一方のファイルが大きすぎるため、ファイルを比較できません。"
|
||||
}
|
||||
15
i18n/jpn/src/vs/editor/browser/widget/diffReview.i18n.json
Normal file
15
i18n/jpn/src/vs/editor/browser/widget/diffReview.i18n.json
Normal file
@@ -0,0 +1,15 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"label.close": "閉じる",
|
||||
"header": "{1} の差分 {0}: 変更前の {2}、{3} 行、変更後の {4}、{5} 行",
|
||||
"blankLine": "空白",
|
||||
"equalLine": "変更前の {0}、変更後の {1}: {2}",
|
||||
"insertLine": "+ 変更後の {0}: {1}",
|
||||
"deleteLine": "- 変更前の {0}: {1}",
|
||||
"editor.action.diffReview.next": "次の差分に移動",
|
||||
"editor.action.diffReview.prev": "前の差分に移動"
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"editorConfigurationTitle": "エディター",
|
||||
"fontFamily": "フォント ファミリを制御します。",
|
||||
"fontWeight": "フォントの太さを制御します。",
|
||||
"fontSize": "フォント サイズをピクセル単位で制御します。",
|
||||
"lineHeight": "行の高さを制御します。fontSize に基づいて lineHeight を計算する場合には、0 を使用します。",
|
||||
"letterSpacing": "文字の間隔をピクセル単位で制御します。",
|
||||
"lineNumbers": "行番号の表示を制御します。使用可能な値は、'on'、'off'、および 'relative' です。'relative' は現在のカーソル位置からの行数を示します。",
|
||||
"rulers": "垂直ルーラーを表示する列",
|
||||
"wordSeparators": "単語に関連したナビゲーションまたは操作を実行するときに、単語の区切り文字として使用される文字",
|
||||
"tabSize": "1 つのタブに相当するスペースの数。`editor.detectIndentation` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。",
|
||||
"tabSize.errorMessage": "'number' が必要です。`editor.detectIndentation` 設定によって値 \"auto\" が置き換えられていることに注意してください。",
|
||||
"insertSpaces": "Tab キーを押すとスペースが挿入されます。`editor.detectIndentation` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。",
|
||||
"insertSpaces.errorMessage": "'boolean' が必要です。`editor.detectIndentation` 設定によって値 \"auto\" が置き換えられていることに注意してください。",
|
||||
"detectIndentation": "ファイルを開くと、そのファイルの内容に基づいて `editor.tabSize` と `editor.insertSpaces` が検出されます。",
|
||||
"roundedSelection": "選択範囲の角を丸くするかどうかを制御します",
|
||||
"scrollBeyondLastLine": "エディターで最後の行を越えてスクロールするかどうかを制御します",
|
||||
"smoothScrolling": "アニメーションでエディターをスクロールするかどうかを制御します",
|
||||
"minimap.enabled": "ミニマップを表示するかどうかを制御します",
|
||||
"minimap.showSlider": "ミニマップのスライダーを自動的に非表示にするかどうかを制御します。指定できる値は 'always' と 'mouseover' です",
|
||||
"minimap.renderCharacters": "行に (カラー ブロックではなく) 実際の文字を表示します",
|
||||
"minimap.maxColumn": "表示するミニマップの最大幅を特定の桁数に制限します",
|
||||
"find.seedSearchStringFromSelection": "エディターの選択から検索ウィジェット内の検索文字列を与えるかどうかを制御します",
|
||||
"find.autoFindInSelection": "エディター内で複数の文字もしくは行が選択されているときに選択範囲を検索するフラグを有効にするかどうかを制御します",
|
||||
"wordWrap.off": "行を折り返しません。",
|
||||
"wordWrap.on": "行をビューポートの幅で折り返します。",
|
||||
"wordWrap.wordWrapColumn": "行を 'editor.wordWrapColumn' で折り返します。",
|
||||
"wordWrap.bounded": "ビューポートと 'editor.wordWrapColumn' の最小値で行を折り返します。",
|
||||
"wordWrap": "行の折り返し方法を制御します。次の値を指定できます。\n - 'off' (折り返さない),\n - 'on' (ビューポート折り返し),\n - 'wordWrapColumn' ('editor.wordWrapColumn' で折り返し) or\n - 'bounded' (ビューポートと 'editor.wordWrapColumn' の最小値で折り返し).",
|
||||
"wordWrapColumn": "'editor.wordWrap' が 'wordWrapColumn' または 'bounded' の場合に、エディターの折り返し桁を制御します。",
|
||||
"wrappingIndent": "折り返し行のインデントを制御します。'none'、'same'、または 'indent' のいずれかを指定できます。",
|
||||
"mouseWheelScrollSensitivity": "マウス ホイール スクロール イベントの `deltaX` と `deltaY` で使用される乗数",
|
||||
"multiCursorModifier.ctrlCmd": "Windows および Linux 上の `Control` と OSX 上の `Command` にマップします。",
|
||||
"multiCursorModifier.alt": "Windows および Linux 上の `Alt` と OSX 上の `Option` にマップします。",
|
||||
"multiCursorModifier": "マウスで複数のカーソルを追加するときに使用する修飾キーです。`ctrlCmd` は Windows および Linux 上の `Control` キーと OSX 上の `Command` キーにマップします。「定義に移動」や「リンクを開く」のマウス操作は、マルチカーソルの修飾キーと競合しないように適用されます。",
|
||||
"quickSuggestions.strings": "文字列内でクイック候補を有効にします。",
|
||||
"quickSuggestions.comments": "コメント内でクイック候補を有効にします。",
|
||||
"quickSuggestions.other": "文字列およびコメント外でクイック候補を有効にします。",
|
||||
"quickSuggestions": "入力中に候補を自動的に表示するかどうかを制御します",
|
||||
"quickSuggestionsDelay": "クイック候補が表示されるまでの待ち時間 (ミリ秒) を制御します",
|
||||
"parameterHints": "入力時にパラメーター ドキュメントと型情報を表示するポップアップを有効にする",
|
||||
"autoClosingBrackets": "エディターで左角かっこの後に自動的に右角かっこを挿入するかどうかを制御します",
|
||||
"formatOnType": "エディターで入力後に自動的に行の書式設定を行うかどうかを制御します",
|
||||
"formatOnPaste": "貼り付けた内容がエディターにより自動的にフォーマットされるかどうかを制御します。フォーマッタを使用可能にする必要があります。また、フォーマッタがドキュメント内の範囲をフォーマットできなければなりません。",
|
||||
"autoIndent": "ユーザーが入力や貼り付け、行の移動をしたとき、エディターがインデントを自動的に調整するかどうかを制御します。言語のインデント ルールを使用できる必要があります。",
|
||||
"suggestOnTriggerCharacters": "トリガー文字の入力時に候補が自動的に表示されるようにするかどうかを制御します",
|
||||
"acceptSuggestionOnEnter": "'Tab' キーに加えて 'Enter' キーで候補を受け入れるかどうかを制御します。改行の挿入や候補の反映の間であいまいさを解消するのに役立ちます。'smart' 値は文字を変更するときに、Enter キーを押すだけで提案を反映することを意味します。",
|
||||
"acceptSuggestionOnCommitCharacter": "コミット文字で候補を受け入れるかどうかを制御します。たとえば、JavaScript ではセミコロン (';') をコミット文字にして、候補を受け入れてその文字を入力することができます。",
|
||||
"snippetSuggestions.top": "他の候補の上にスニペットの候補を表示します。",
|
||||
"snippetSuggestions.bottom": "他の候補の下にスニペットの候補を表示します。",
|
||||
"snippetSuggestions.inline": "他の候補と一緒にスニペットの候補を表示します。",
|
||||
"snippetSuggestions.none": "スニペットの候補を表示しません。",
|
||||
"snippetSuggestions": "他の修正候補と一緒にスニペットを表示するかどうか、およびその並び替えの方法を制御します。",
|
||||
"emptySelectionClipboard": "選択範囲を指定しないでコピーする場合に現在の行をコピーするかどうかを制御します。",
|
||||
"wordBasedSuggestions": "ドキュメント内の単語に基づいて入力候補を計算するかどうかを制御します。",
|
||||
"suggestFontSize": "候補のウィジェットのフォント サイズ",
|
||||
"suggestLineHeight": "候補のウィジェットの行の高さ",
|
||||
"selectionHighlight": "エディターで選択範囲に類似する一致箇所を強調表示するかどうかを制御します",
|
||||
"occurrencesHighlight": "エディターでセマンティック シンボルの出現箇所を強調表示するかどうかを制御します",
|
||||
"overviewRulerLanes": "概要ルーラーの同じ位置に表示できる装飾の数を制御します",
|
||||
"overviewRulerBorder": "概要ルーラーの周囲に境界線が描画されるかどうかを制御します。",
|
||||
"cursorBlinking": "カーソルのアニメーション スタイルを制御します。指定できる値は 'blink'、'smooth'、'phase'、'expand'、'solid' です",
|
||||
"mouseWheelZoom": "Ctrl キーを押しながらマウス ホイールを使用してエディターのフォントをズームします",
|
||||
"cursorStyle": "カーソルのスタイルを制御します。指定できる値は 'block'、'block-outline'、'line'、'line-thin'、'underline'、'underline-thin' です",
|
||||
"fontLigatures": "フォントの合字を使用します",
|
||||
"hideCursorInOverviewRuler": "概要ルーラーでカーソルを非表示にするかどうかを制御します。",
|
||||
"renderWhitespace": "エディターで空白文字を表示する方法を制御します。'none'、'boundary' および 'all' が使用可能です。'boundary' オプションでは、単語間の単一スペースは表示されません。",
|
||||
"renderControlCharacters": "エディターで制御文字を表示する必要があるかどうかを制御します",
|
||||
"renderIndentGuides": "エディターでインデントのガイドを表示する必要があるかどうかを制御します",
|
||||
"renderLineHighlight": "エディターが現在の行をどのように強調表示するかを制御します。考えられる値は 'none'、'gutter'、'line'、'all' です。",
|
||||
"codeLens": "エディターで CodeLens を表示するかどうかを制御する",
|
||||
"folding": "エディターでコードの折りたたみを有効にするかどうかを制御します",
|
||||
"showFoldingControls": "余白上の折りたたみコントロールを自動的に非表示にするかどうかを制御します 。",
|
||||
"matchBrackets": "かっこを選択すると、対応するかっこを強調表示します。",
|
||||
"glyphMargin": "エディターで縦のグリフ余白が表示されるかどうかを制御します。ほとんどの場合、グリフ余白はデバッグに使用されます。",
|
||||
"useTabStops": "空白の挿入や削除はタブ位置に従って行われます",
|
||||
"trimAutoWhitespace": "自動挿入された末尾の空白を削除する",
|
||||
"stablePeek": "エディターのコンテンツをダブルクリックするか、Esc キーを押しても、ピーク エディターを開いたままにします。",
|
||||
"dragAndDrop": "ドラッグ アンド ドロップによる選択範囲の移動をエディターが許可する必要があるかどうかを制御します。",
|
||||
"accessibilitySupport.auto": "エディターはスクリーン リーダーがいつ接続されたかを検出するためにプラットフォーム API を使用します。",
|
||||
"accessibilitySupport.on": "エディターは永続的にスクリーン リーダー向けに最適化されます。",
|
||||
"accessibilitySupport.off": "エディターはスクリーン リーダー向けに最適化されません。",
|
||||
"accessibilitySupport": "エディターをスクリーン リーダーに最適化されたモードで実行するかどうかを制御します。",
|
||||
"links": "エディターがリンクを検出してクリック可能な状態にするかどうかを制御します",
|
||||
"colorDecorators": "エディターでインライン カラー デコレーターと色の選択を表示する必要があるかどうかを制御します。",
|
||||
"sideBySide": "差分エディターが差分を横に並べて表示するか、行内に表示するかを制御します",
|
||||
"ignoreTrimWhitespace": "差分エディターが、先頭または末尾の空白の変更を差分として表示するかどうかを制御します。",
|
||||
"renderIndicators": "差分エディターが追加/削除された変更に +/- インジケーターを示すかどうかを制御します",
|
||||
"selectionClipboard": "Linux の PRIMARY クリップボードをサポートするかどうかを制御します。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"editorViewAccessibleLabel": "エディターのコンテンツ"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"accessibilityOffAriaLabel": "現在エディターにアクセスすることはできません。 Alt + F1 キーを押してオプションを選択します。",
|
||||
"editorViewAccessibleLabel": "エディターのコンテンツ"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"corrupt.commands": "コマンドの実行中に予期しない例外が発生しました。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"mode.tokenizationSupportFailed": "入力のトークン化中にモードが失敗しました。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"plainText.alias": "プレーンテキスト"
|
||||
}
|
||||
11
i18n/jpn/src/vs/editor/common/services/bulkEdit.i18n.json
Normal file
11
i18n/jpn/src/vs/editor/common/services/bulkEdit.i18n.json
Normal file
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"conflict": "この間に次のファイルが変更されました: {0}",
|
||||
"summary.0": "編集は行われませんでした",
|
||||
"summary.nm": "{1} 個のファイルで {0} 件のテキスト編集を実行",
|
||||
"summary.n0": "1 つのファイルで {0} 個のテキストを編集"
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"vscode.extension.contributes.languages": "言語の宣言を提供します。",
|
||||
"vscode.extension.contributes.languages.id": "言語の ID。",
|
||||
"vscode.extension.contributes.languages.aliases": "言語の名前のエイリアス。",
|
||||
"vscode.extension.contributes.languages.extensions": "言語に関連付けられているファイルの拡張子。",
|
||||
"vscode.extension.contributes.languages.filenames": "言語に関連付けられたファイル名。",
|
||||
"vscode.extension.contributes.languages.filenamePatterns": "言語に関連付けられたファイル名の glob パターン。",
|
||||
"vscode.extension.contributes.languages.mimetypes": "言語に関連付けられている MIME の種類。",
|
||||
"vscode.extension.contributes.languages.firstLine": "言語のファイルの最初の行に一致する正規表現。",
|
||||
"vscode.extension.contributes.languages.configuration": "言語の構成オプションを含むファイルへの相対パス。"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"diagAndSourceMultiline": "[{0}]\n{1}",
|
||||
"diagAndSource": "[{0}] {1}"
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"lineHighlight": "カーソル位置の行を強調表示する背景色。",
|
||||
"lineHighlightBorderBox": "カーソル位置の行の境界線を強調表示する背景色。",
|
||||
"rangeHighlight": "Quick Open 機能や検索機能などによって強調表示された範囲の背景色。",
|
||||
"caret": "エディターのカーソルの色。",
|
||||
"editorCursorBackground": "選択された文字列の背景色です。選択された文字列の背景色をカスタマイズ出来ます。",
|
||||
"editorWhitespaces": "エディターのスペース文字の色。",
|
||||
"editorIndentGuides": "エディター インデント ガイドの色。",
|
||||
"editorLineNumbers": "エディターの行番号の色。",
|
||||
"editorRuler": "エディター ルーラーの色。",
|
||||
"editorCodeLensForeground": "CodeLens エディターの前景色。",
|
||||
"editorBracketMatchBackground": "一致するかっこの背景色",
|
||||
"editorBracketMatchBorder": "一致するかっこ内のボックスの色",
|
||||
"editorOverviewRulerBorder": "概要ルーラーの境界色。",
|
||||
"editorGutter": "エディターの余白の背景色。余白にはグリフ マージンと行番号が含まれます。",
|
||||
"errorForeground": "エディターでエラーを示す波線の前景色。",
|
||||
"errorBorder": "エディターでエラーを示す波線の境界線の色。",
|
||||
"warningForeground": "エディターで警告を示す波線の前景色。",
|
||||
"warningBorder": "エディターで警告を示す波線の境界線の色。",
|
||||
"overviewRulerRangeHighlight": "範囲を強調表示するときの概要ルーラーのマーカー色。",
|
||||
"overviewRuleError": "エラーを示す概要ルーラーのマーカー色。",
|
||||
"overviewRuleWarning": "警告を示す概要ルーラーのマーカー色。",
|
||||
"overviewRuleInfo": "情報を示す概要ルーラーのマーカー色。"
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"introMsg": "VS Code のアクセシビリティ オプションをご利用いただき、ありがとうございます。",
|
||||
"status": "ステータス:",
|
||||
"tabFocusModeOnMsg": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。{0} を押すと、この動作が切り替わります。",
|
||||
"tabFocusModeOnMsgNoKb": "現在のエディターで Tab キーを押すと、次のフォーカス可能な要素にフォーカスを移動します。コマンド {0} は、キー バインドでは現在トリガーできません。",
|
||||
"tabFocusModeOffMsg": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。{0} を押すと、この動作が切り替わります。",
|
||||
"tabFocusModeOffMsgNoKb": "現在のエディターで Tab キーを押すと、タブ文字が挿入されます。コマンド {0} は、キー バインドでは現在トリガーできません。",
|
||||
"outroMsg": "Esc キーを押すと、ヒントを消してエディターに戻ることができます。",
|
||||
"ShowAccessibilityHelpAction": "アクセシビリティのヘルプを表示します"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"smartSelect.jumpBracket": "ブラケットへ移動"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"caret.moveLeft": "キャレットを左に移動",
|
||||
"caret.moveRight": "キャレットを右に移動"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"transposeLetters.label": "文字の入れ替え"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"actions.clipboard.cutLabel": "切り取り",
|
||||
"actions.clipboard.copyLabel": "コピー",
|
||||
"actions.clipboard.pasteLabel": "貼り付け",
|
||||
"actions.clipboard.copyWithSyntaxHighlightingLabel": "構文を強調表示してコピー"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"comment.line": "行コメントの切り替え",
|
||||
"comment.line.add": "行コメントの追加",
|
||||
"comment.line.remove": "行コメントの削除",
|
||||
"comment.block": "ブロック コメントの切り替え"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"action.showContextMenu.label": "エディターのコンテキスト メニューの表示"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"label.find": "検索",
|
||||
"placeholder.find": "検索",
|
||||
"label.previousMatchButton": "前の一致項目",
|
||||
"label.nextMatchButton": "次の一致項目",
|
||||
"label.toggleSelectionFind": "選択範囲を検索",
|
||||
"label.closeButton": "閉じる",
|
||||
"label.replace": "置換",
|
||||
"placeholder.replace": "置換",
|
||||
"label.replaceButton": "置換",
|
||||
"label.replaceAllButton": "すべて置換",
|
||||
"label.toggleReplaceButton": "置換モードの切り替え",
|
||||
"title.matchesCountLimit": "最初の 999 の結果だけを強調表示しますが、テキスト全体を検索します。",
|
||||
"label.matchesLocation": "{1} の {0}",
|
||||
"label.noResults": "結果なし"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"label.find": "検索",
|
||||
"placeholder.find": "検索",
|
||||
"label.previousMatchButton": "前の一致項目",
|
||||
"label.nextMatchButton": "次の一致項目",
|
||||
"label.closeButton": "閉じる"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"startFindAction": "検索",
|
||||
"findNextMatchAction": "次を検索",
|
||||
"findPreviousMatchAction": "前を検索",
|
||||
"nextSelectionMatchFindAction": "次の選択項目を検索",
|
||||
"previousSelectionMatchFindAction": "前の選択項目を検索",
|
||||
"startReplace": "置換",
|
||||
"addSelectionToNextFindMatch": "選択した項目を次の一致項目に追加",
|
||||
"addSelectionToPreviousFindMatch": "選んだ項目を前の一致項目に追加する",
|
||||
"moveSelectionToNextFindMatch": "最後に選択した項目を次の一致項目に移動",
|
||||
"moveSelectionToPreviousFindMatch": "最後に選んだ項目を前の一致項目に移動する",
|
||||
"selectAllOccurrencesOfFindMatch": "一致するすべての出現箇所を選択します",
|
||||
"changeAll.label": "すべての出現箇所を変更",
|
||||
"showNextFindTermAction": "次の検索語句を表示",
|
||||
"showPreviousFindTermAction": "前の検索語句を表示"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"unfoldAction.label": "展開",
|
||||
"unFoldRecursivelyAction.label": "再帰的に展開",
|
||||
"foldAction.label": "折りたたみ",
|
||||
"foldRecursivelyAction.label": "再帰的に折りたたむ",
|
||||
"foldAllAction.label": "すべて折りたたみ",
|
||||
"unfoldAllAction.label": "すべて展開",
|
||||
"foldLevelAction.label": "折りたたみレベル {0}"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"hint11": "行 {0} で 1 つの書式設定を編集",
|
||||
"hintn1": "行 {1} で {0} 個の書式設定を編集",
|
||||
"hint1n": "行 {0} と {1} の間で 1 つの書式設定を編集",
|
||||
"hintnn": "行 {1} と {2} の間で {0} 個の書式設定を編集",
|
||||
"formatDocument.label": "ドキュメントのフォーマット",
|
||||
"formatSelection.label": "選択範囲のフォーマット"
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"noResultWord": "'{0}' の定義は見つかりません",
|
||||
"generic.noResults": "定義が見つかりません",
|
||||
"meta.title": " – {0} 個の定義",
|
||||
"actions.goToDecl.label": "定義へ移動",
|
||||
"actions.goToDeclToSide.label": "定義を横に開く",
|
||||
"actions.previewDecl.label": "定義をここに表示",
|
||||
"goToImplementation.noResultWord": "'{0}' の実装が見つかりません",
|
||||
"goToImplementation.generic.noResults": "実装が見つかりません",
|
||||
"meta.implementations.title": "– {0} 個の実装",
|
||||
"actions.goToImplementation.label": "実装に移動",
|
||||
"actions.peekImplementation.label": "実装のプレビュー",
|
||||
"goToTypeDefinition.noResultWord": "'{0}' の型定義が見つかりません",
|
||||
"goToTypeDefinition.generic.noResults": "型定義が見つかりません",
|
||||
"meta.typeDefinitions.title": " – {0} 個の型定義",
|
||||
"actions.goToTypeDefinition.label": "型定義へ移動",
|
||||
"actions.peekTypeDefinition.label": "型定義を表示",
|
||||
"multipleResults": "クリックして、{0} の定義を表示します。"
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"noResultWord": "'{0}' の定義は見つかりません",
|
||||
"generic.noResults": "定義が見つかりません",
|
||||
"meta.title": " – {0} 個の定義",
|
||||
"actions.goToDecl.label": "定義へ移動",
|
||||
"actions.goToDeclToSide.label": "定義を横に開く",
|
||||
"actions.previewDecl.label": "定義をここに表示",
|
||||
"goToImplementation.noResultWord": "'{0}' の実装が見つかりません",
|
||||
"goToImplementation.generic.noResults": "実装が見つかりません",
|
||||
"meta.implementations.title": "– {0} 個の実装",
|
||||
"actions.goToImplementation.label": "実装に移動",
|
||||
"actions.peekImplementation.label": "実装のプレビュー",
|
||||
"goToTypeDefinition.noResultWord": "'{0}' の型定義が見つかりません",
|
||||
"goToTypeDefinition.generic.noResults": "型定義が見つかりません",
|
||||
"meta.typeDefinitions.title": " – {0} 個の型定義",
|
||||
"actions.goToTypeDefinition.label": "型定義へ移動",
|
||||
"actions.peekTypeDefinition.label": "型定義を表示"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"multipleResults": "クリックして、{0} の定義を表示します。"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"title.wo_source": "({0}/{1})",
|
||||
"markerAction.next.label": "次のエラーまたは警告へ移動",
|
||||
"markerAction.previous.label": "前のエラーまたは警告へ移動",
|
||||
"editorMarkerNavigationError": "エディターのマーカー ナビゲーション ウィジェットのエラーの色。",
|
||||
"editorMarkerNavigationWarning": "エディターのマーカー ナビゲーション ウィジェットの警告の色。",
|
||||
"editorMarkerNavigationBackground": "エディターのマーカー ナビゲーション ウィジェットの背景。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"showHover": "ホバーの表示"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"modesContentHover.loading": "読み込んでいます..."
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"InPlaceReplaceAction.previous.label": "前の値に置換",
|
||||
"InPlaceReplaceAction.next.label": "次の値に置換"
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"indentationToSpaces": "インデントをスペースに変換",
|
||||
"indentationToTabs": "インデントをタブに変換",
|
||||
"configuredTabSize": "構成されたタブのサイズ",
|
||||
"selectTabWidth": "現在のファイルのタブのサイズを選択",
|
||||
"indentUsingTabs": "タブによるインデント",
|
||||
"indentUsingSpaces": "スペースによるインデント",
|
||||
"detectIndentation": "内容からインデントを検出",
|
||||
"editor.reindentlines": "行の再インデント"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"inspectTMScopes": "開発者: TM スコープの検査",
|
||||
"inspectTMScopesWidget.loading": "読み込んでいます..."
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"lines.copyUp": "行を上へコピー",
|
||||
"lines.copyDown": "行を下へコピー",
|
||||
"lines.moveUp": "行を上へ移動",
|
||||
"lines.moveDown": "行を下へ移動",
|
||||
"lines.sortAscending": "行を昇順に並べ替え",
|
||||
"lines.sortDescending": "行を降順に並べ替え",
|
||||
"lines.trimTrailingWhitespace": "末尾の空白のトリミング",
|
||||
"lines.delete": "行の削除",
|
||||
"lines.indent": "行のインデント",
|
||||
"lines.outdent": "行のインデント解除",
|
||||
"lines.insertBefore": "行を上に挿入",
|
||||
"lines.insertAfter": "行を下に挿入",
|
||||
"lines.deleteAllLeft": "左側をすべて削除",
|
||||
"lines.deleteAllRight": "右側をすべて削除",
|
||||
"lines.joinLines": "行をつなげる",
|
||||
"editor.transpose": "カーソルの周囲の文字を入れ替える",
|
||||
"editor.transformToUppercase": "大文字に変換",
|
||||
"editor.transformToLowercase": "小文字に変換"
|
||||
}
|
||||
16
i18n/jpn/src/vs/editor/contrib/links/browser/links.i18n.json
Normal file
16
i18n/jpn/src/vs/editor/contrib/links/browser/links.i18n.json
Normal file
@@ -0,0 +1,16 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"links.navigate.mac": "command キーを押しながらクリックしてリンク先を表示",
|
||||
"links.navigate": "Ctrl キーを押しながらクリックしてリンク先を表示",
|
||||
"links.command.mac": "command キーを押しながらクリックしてコマンドを実行",
|
||||
"links.command": "Ctrl キーを押しながらクリックしてコマンドを実行",
|
||||
"links.navigate.al": "Altl キーを押しながらクリックしてリンク先を表示",
|
||||
"links.command.al": "Alt キーを押しながらクリックしてコマンドを実行",
|
||||
"invalid.url": "申し訳ありません。このリンクは形式が正しくないため開くことができませんでした: {0}",
|
||||
"missing.url": "申し訳ありません。このリンクはターゲットが存在しないため開くことができませんでした。",
|
||||
"label": "リンクを開く"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"mutlicursor.insertAbove": "カーソルを上に挿入",
|
||||
"mutlicursor.insertBelow": "カーソルを下に挿入",
|
||||
"mutlicursor.insertAtEndOfEachLineSelected": "カーソルを行末に挿入"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"parameterHints.trigger.label": "パラメーター ヒントをトリガー"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"hint": "{0}、ヒント"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"quickFixWithKb": "修正プログラム ({0}) を表示する",
|
||||
"quickFix": "修正プログラムを表示する",
|
||||
"quickfix.trigger.label": "クイック修正"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"meta.titleReference": "– {0} 個の参照",
|
||||
"references.action.label": "すべての参照の検索"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"labelLoading": "読み込んでいます..."
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"aria.oneReference": "列 {2} の {1} 行目に {0} つのシンボル",
|
||||
"aria.fileReferences.1": "{0} に 1 個のシンボル、完全なパス {1}",
|
||||
"aria.fileReferences.N": "{1} に {0} 個のシンボル、完全なパス {2}",
|
||||
"aria.result.0": "一致する項目はありません",
|
||||
"aria.result.1": "{0} に 1 個のシンボルが見つかりました",
|
||||
"aria.result.n1": "{1} に {0} 個のシンボルが見つかりました",
|
||||
"aria.result.nm": "{1} 個のファイルに {0} 個のシンボルが見つかりました"
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"referencesFailre": "ファイルを解決できませんでした。",
|
||||
"referencesCount": "{0} 個の参照",
|
||||
"referenceCount": "{0} 個の参照",
|
||||
"missingPreviewMessage": "プレビューを表示できません",
|
||||
"treeAriaLabel": "参照",
|
||||
"noResults": "結果がありません",
|
||||
"peekView.alternateTitle": "参照",
|
||||
"peekViewTitleBackground": "ピーク ビューのタイトル領域の背景色。",
|
||||
"peekViewTitleForeground": "ピーク ビュー タイトルの色。",
|
||||
"peekViewTitleInfoForeground": "ピーク ビューのタイトル情報の色。",
|
||||
"peekViewBorder": "ピーク ビューの境界と矢印の色。",
|
||||
"peekViewResultsBackground": "ピーク ビュー結果リストの背景色。",
|
||||
"peekViewResultsMatchForeground": "ピーク ビュー結果リストのライン ノードの前景色。",
|
||||
"peekViewResultsFileForeground": "ピーク ビュー結果リストのファイル ノードの前景色。",
|
||||
"peekViewResultsSelectionBackground": "ピーク ビュー結果リストの選択済みエントリの背景色。",
|
||||
"peekViewResultsSelectionForeground": "ピーク ビュー結果リストの選択済みエントリの前景色。",
|
||||
"peekViewEditorBackground": "ピーク ビュー エディターの背景色。",
|
||||
"peekViewEditorGutterBackground": "ピーク ビュー エディターの余白の背景色。",
|
||||
"peekViewResultsMatchHighlight": "ピーク ビュー結果リストの一致した強調表示色。",
|
||||
"peekViewEditorMatchHighlight": "ピーク ビュー エディターの一致した強調表示色。"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no result": "結果がありません。",
|
||||
"aria": "'{0}' から '{1}' への名前変更が正常に完了しました。概要: {2}",
|
||||
"rename.failed": "申し訳ありません。名前の変更を実行できませんでした。",
|
||||
"rename.label": "シンボルの名前を変更"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"renameAriaLabel": "名前変更入力。新しい名前を入力し、Enter キーを押してコミットしてください。"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"smartSelect.grow": "選択範囲を拡大",
|
||||
"smartSelect.shrink": "選択範囲を縮小"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"arai.alert.snippet": "'{0}' が次のテキストを挿入したことを承認しています: {1}",
|
||||
"suggest.trigger.label": "候補をトリガー"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"editorSuggestWidgetBackground": "候補のウィジェットの背景色。",
|
||||
"editorSuggestWidgetBorder": "候補ウィジェットの境界線色。",
|
||||
"editorSuggestWidgetForeground": "候補ウィジェットの前景色。",
|
||||
"editorSuggestWidgetSelectedBackground": "候補ウィジェット内で選択済みエントリの背景色。",
|
||||
"editorSuggestWidgetHighlightForeground": "候補のウィジェット内で一致したハイライトの色。",
|
||||
"readMore": "詳細を表示...{0}",
|
||||
"suggestionWithDetailsAriaLabel": "{0}、候補、詳細あり",
|
||||
"suggestionAriaLabel": "{0}、候補",
|
||||
"readLess": "詳細を隠す...{0}",
|
||||
"suggestWidget.loading": "読み込んでいます...",
|
||||
"suggestWidget.noSuggestions": "候補はありません。",
|
||||
"suggestionAriaAccepted": "{0}、受け入れ済み",
|
||||
"ariaCurrentSuggestionWithDetails": "{0}、候補、詳細あり",
|
||||
"ariaCurrentSuggestion": "{0}、候補"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"toggle.tabMovesFocus": "Tab キーを切り替えるとフォーカスが移動します"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"wordHighlight": "変数の読み取りなど読み取りアクセス中のシンボルの背景色。",
|
||||
"wordHighlightStrong": "変数への書き込みなど書き込みアクセス中のシンボルの背景色。",
|
||||
"overviewRulerWordHighlightForeground": "シンボルを強調表示するときの概要ルーラーのマーカー色。",
|
||||
"overviewRulerWordHighlightStrongForeground": "書き込みアクセス シンボルを強調表示するときの概要ルーラーのマーカー色。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"label.close": "閉じる"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"invalid.language": "`contributes.{0}.language` で不明な言語です。提供された値: {1}",
|
||||
"invalid.scopeName": "`contributes.{0}.scopeName` には文字列が必要です。提供された値: {1}",
|
||||
"invalid.path.0": "`contributes.{0}.path` に文字列が必要です。提供された値: {1}",
|
||||
"invalid.injectTo": "`contributes.{0}.injectTo` の値が無効です。言語の範囲名の配列である必要があります。指定された値: {1}",
|
||||
"invalid.embeddedLanguages": "`contributes.{0}.embeddedLanguages` の値が無効です。スコープ名から言語へのオブジェクト マップである必要があります。指定された値: {1}",
|
||||
"invalid.path.1": "拡張機能のフォルダー ({2}) の中に `contributes.{0}.path` ({1}) が含まれている必要があります。これにより拡張を移植できなくなる可能性があります。",
|
||||
"no-tm-grammar": "この言語に対して TM 文法は登録されていません。"
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"parseErrors": "{0} を解析中のエラー: {1}",
|
||||
"schema.openBracket": "左角かっこまたは文字列シーケンス。",
|
||||
"schema.closeBracket": "右角かっこまたは文字列シーケンス。",
|
||||
"schema.comments": "コメント記号を定義します。",
|
||||
"schema.blockComments": "ブロック コメントのマーク方法を定義します。",
|
||||
"schema.blockComment.begin": "ブロック コメントを開始する文字シーケンス。",
|
||||
"schema.blockComment.end": "ブロック コメントを終了する文字シーケンス。",
|
||||
"schema.lineComment": "行コメントを開始する文字シーケンス。",
|
||||
"schema.brackets": "インデントを増減する角かっこを定義します。",
|
||||
"schema.autoClosingPairs": "角かっこのペアを定義します。左角かっこが入力されると、右角かっこが自動的に挿入されます。",
|
||||
"schema.autoClosingPairs.notIn": "自動ペアが無効なスコープの一覧を定義します。",
|
||||
"schema.surroundingPairs": "選択文字列を囲むときに使用できる角かっこのペアを定義します。",
|
||||
"schema.wordPattern": "言語のための単語の定義。",
|
||||
"schema.wordPattern.pattern": "言葉の照合に使用する正規表現パターン。",
|
||||
"schema.wordPattern.flags": "言葉の照合に使用する正規表現フラグ。",
|
||||
"schema.wordPattern.flags.errorMessage": "`/^([gimuy]+)$/` パターンに一致する必要があります。"
|
||||
}
|
||||
13
i18n/jpn/src/vs/editor/node/textMate/TMGrammars.i18n.json
Normal file
13
i18n/jpn/src/vs/editor/node/textMate/TMGrammars.i18n.json
Normal file
@@ -0,0 +1,13 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"vscode.extension.contributes.grammars": "TextMate トークナイザーを提供します。",
|
||||
"vscode.extension.contributes.grammars.language": "この構文の提供先の言語識別子です。",
|
||||
"vscode.extension.contributes.grammars.scopeName": "tmLanguage ファイルにより使用される TextMate スコープ名。",
|
||||
"vscode.extension.contributes.grammars.path": "tmLanguage ファイルのパス。拡張機能フォルダーの相対パスであり、通常 './syntaxes/' で始まります。",
|
||||
"vscode.extension.contributes.grammars.embeddedLanguages": "この文法に言語が埋め込まれている場合は、言語 ID に対するスコープ名のマップ。",
|
||||
"vscode.extension.contributes.grammars.injectTo": "この文法が挿入される言語の範囲名の一覧。"
|
||||
}
|
||||
Reference in New Issue
Block a user