mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 04:23:32 +01:00
More i18n files which got ignored due to out folder
This commit is contained in:
41
i18n/cht/extensions/json/server/out/configuration.i18n.json
Normal file
41
i18n/cht/extensions/json/server/out/configuration.i18n.json
Normal file
@@ -0,0 +1,41 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"schema.json": "使用結構描述來描述 JSON 檔案。如需詳細資訊,請參閱 json-schema.org。",
|
||||
"schema.json.$schema": "用來驗證此文件的結構描述",
|
||||
"schema.json.additionalItems": "用於陣列 (只有在項目設為陣列時)。若其為結構描述,此結構描述會驗證項目陣列所指定的項目之後的項目。若其為 False,則額外的項目會導致驗證失敗。",
|
||||
"schema.json.additionalProperties": "為結構描述或布林值。若為結構描述,將會用於驗證所有不符合 'properties' 或 'patternProperties' 的屬性。若為 False,則所有不符合這兩項其中之一的屬性,都會導致此結構描述失敗。",
|
||||
"schema.json.allOf": "結構描述的陣列,必須全部符合。",
|
||||
"schema.json.anyOf": "結構描述的陣列,其中必須至少有一個符合。",
|
||||
"schema.json.default": "預設值。供建議使用。",
|
||||
"schema.json.definitions": "不用於驗證。將您要利用 $ref 內嵌參考的子結構描述置於此處",
|
||||
"schema.json.dependencies": "屬性名稱對屬性名稱陣列或結構描述的對應。屬性名稱陣列表示索引鍵中的命名屬性若要有效,陣列中的屬性必須出現在物件中。若值為結構描述,則只有當索引鍵中的屬性存在於物件上時,才會將結構描述套用到該物件。",
|
||||
"schema.json.description": "元素的詳細描述。用於暫留功能表和建議。",
|
||||
"schema.json.enum": "有效常值的集合",
|
||||
"schema.json.exclusiveMaximum": "將最大值屬性設為排除。",
|
||||
"schema.json.exclusiveMininum": "將最小值屬性設為排除。",
|
||||
"schema.json.format": "描述此值需要的格式。",
|
||||
"schema.json.id": "結構描述的唯一識別碼。",
|
||||
"schema.json.items": "用於陣列。可以是用來驗證每個元素的結構描述,或是用來依序驗證每個項目的結構描述陣列 (第一個結構描述驗證第一個元素,第二個結構描述驗證第二個元素,依此類推)。",
|
||||
"schema.json.maxItems": "陣列可包含的最大項目數目 (含)。",
|
||||
"schema.json.maxLength": "字串的最大長度。",
|
||||
"schema.json.maxProperties": "物件可擁有的最大屬性數目 (含)。",
|
||||
"schema.json.maximum": "最大數值,預設為包含。",
|
||||
"schema.json.minItems": "陣列可包含的最小項目數目 (含)。",
|
||||
"schema.json.minLength": "字串的最小長度。",
|
||||
"schema.json.minProperties": "物件可擁有的最小屬性數目 (含)。",
|
||||
"schema.json.minimum": "最小數值,預設為包含。",
|
||||
"schema.json.multipleOf": "應整除目前值的數字 (即沒有餘數)",
|
||||
"schema.json.not": "不可相符的結構描述。",
|
||||
"schema.json.oneOf": "結構描述的陣列,其中必須剛好有一個符合。",
|
||||
"schema.json.pattern": "用來比對字串的規則運算式。其未隱含錨定。",
|
||||
"schema.json.patternProperties": "屬性名稱的規則運算式對結構描述的對應,用於比對屬性。",
|
||||
"schema.json.properties": "每個屬性的屬性名稱對結構描述的對應。",
|
||||
"schema.json.required": "此字串陣列會列出此物件所有必要屬性的名稱。",
|
||||
"schema.json.title": "元素的描述性標題。",
|
||||
"schema.json.type": "可以是其中一個基本結構描述類型 (數字、整數、null、陣列、物件、布林值、字串) 的字串,或是指定這些類型子集的字串陣列。",
|
||||
"schema.json.uniqueItems": "陣列中的所有項目是否皆不得重複。預設為 False。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"json.suggest.default": "預設值"
|
||||
}
|
||||
44
i18n/cht/extensions/json/server/out/jsonParser.i18n.json
Normal file
44
i18n/cht/extensions/json/server/out/jsonParser.i18n.json
Normal file
@@ -0,0 +1,44 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"ColonExpected": "必須是冒號",
|
||||
"DisallowedExtraPropWarning": "不允許屬性 {0}",
|
||||
"DoubleQuotesExpected": "屬性索引鍵必須加上雙引號",
|
||||
"DuplicateKeyWarning": "物件索引鍵重複",
|
||||
"End of file expected": "必須有檔案結尾",
|
||||
"ExpectedCloseBrace": "必須是逗號或右大括弧",
|
||||
"ExpectedCloseBracket": "必須是逗號或右中括弧",
|
||||
"Invalid symbol": "必須有 JSON 物件、陣列或常值",
|
||||
"InvalidEscapeCharacter": "字串中有無效的逸出字元",
|
||||
"InvalidNumberFormat": "數字格式無效",
|
||||
"InvalidUnicode": "字串中有無效的 Unicode 序列",
|
||||
"MaxPropWarning": "物件的屬性數目超過限制 {0}",
|
||||
"MinPropWarning": "物件的屬性數目少於必要數目 {0}",
|
||||
"MissingRequiredPropWarning": "遺漏屬性 \"{0}\"",
|
||||
"PropertyExpected": "必須有屬性",
|
||||
"RequiredDependentPropWarning": "物件遺漏屬性 {1} 需要的屬性 {0}",
|
||||
"UnexpectedEndOfComment": "未預期的註解結尾",
|
||||
"UnexpectedEndOfNumber": "未預期的數字結尾",
|
||||
"UnexpectedEndOfString": "未預期的字串結尾",
|
||||
"ValueExpected": "必須是值",
|
||||
"additionalItemsWarning": "根據結構描述,陣列有太多項目。必須有 {0} 個或更少項目",
|
||||
"enumWarning": "值並非可接受的值。有效值為: {0}",
|
||||
"exclusiveMaximumWarning": "值高於排除最大值 {0}",
|
||||
"exclusiveMinimumWarning": "值低於排除最小值 {0}",
|
||||
"maxItemsWarning": "陣列內項目太多。必須有 {0} 個或更少項目",
|
||||
"maxLengthWarning": "字串長度小於最大長度 ",
|
||||
"maximumWarning": "值高於最大值 {0}",
|
||||
"minItemsWarning": "陣列內項目太少。必須有 {0} 個或更多項目",
|
||||
"minLengthWarning": "字串長度小於最小長度 ",
|
||||
"minimumWarning": "值低於最小值 {0}",
|
||||
"multipleOfWarning": "值無法被 {0} 整除",
|
||||
"notSchemaWarning": "比對不允許的結構描述。",
|
||||
"oneOfWarning": "比對多個結構描述,但只須驗證一個。",
|
||||
"patternWarning": "字串不符合 \"{0}\" 的模式",
|
||||
"typeArrayMismatchWarning": "類型不正確。必須是 {0} 的其中之一",
|
||||
"typeMismatchWarning": "類型不正確。必須是 \"{0}\"",
|
||||
"uniqueItemsWarning": "陣列有重複的項目"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"json.schema.invalidFormat": "無法從 '{0}' 剖析內容: {1}。",
|
||||
"json.schema.invalidref": "無法解析 {1} 中的 $ref '{0}'。",
|
||||
"json.schema.nocontent": "無法從 '{0}' 載入結構描述: 沒有內容。",
|
||||
"json.schema.problemloadingref": "載入參考 '{0}' 時發生錯誤: {1}",
|
||||
"json.schema.unabletoload": "無法從 '{0}' 載入結構描述: {1}"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"json.bower.default": "預設 bower.json",
|
||||
"json.bower.error.repoaccess": "對 Bower 儲存機制的要求失敗: {0}",
|
||||
"json.bower.package.hover": "{0}"
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"derivedDescription": "比對名稱相同但副檔名不同的同層級檔案。",
|
||||
"derivedLabel": "依名稱排列且同層級的檔案",
|
||||
"falseDescription": "停用模式。",
|
||||
"falseLabel": "False",
|
||||
"fileDescription": "比對所有具特定副檔名的檔案。",
|
||||
"fileLabel": "依副檔名排列的檔案",
|
||||
"filesDescription": "比對所有具任何副檔名的檔案。",
|
||||
"filesLabel": "具多個副檔名的檔案",
|
||||
"folderDescription": "在所有位置比對具特定名稱的資料夾。",
|
||||
"folderLabel": "依名稱排列的資料夾 (任何位置)",
|
||||
"siblingsDescription": "比對名稱相同但副檔名不同的同層級檔案。",
|
||||
"topFolderDescription": "比對具特定名稱的最上層資料夾。",
|
||||
"topFolderLabel": "依名稱排列的資料夾 (最上層)",
|
||||
"topFoldersDescription": "比對多個最上層資料夾。",
|
||||
"topFoldersLabel": "具多個名稱的資料夾 (最上層)",
|
||||
"trueDescription": "啟用模式。",
|
||||
"trueLabel": "True"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"json.npm.error.repoaccess": "對 NPM 儲存機制的要求失敗: {0}",
|
||||
"json.npm.latestversion": "此封裝目前最新的版本",
|
||||
"json.npm.majorversion": "比對最新的主要版本 (1.x.x)",
|
||||
"json.npm.minorversion": "比對最新的次要版本 (1.2.x)",
|
||||
"json.npm.package.hover": "{0}",
|
||||
"json.npm.version.hover": "最新版本: {0}",
|
||||
"json.package.default": "預設 package.json"
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"json.nugget.error.access": "對 {0} 的要求失敗: {1}",
|
||||
"json.nugget.error.indexaccess": "對 {0} 的要求失敗: {1}",
|
||||
"json.nugget.error.invalidformat": "{0} 不是有效的 JSON 文件",
|
||||
"json.nugget.error.missingservice": "NuGet 索引文件遺漏服務 {0}",
|
||||
"json.nugget.package.hover": "{0}",
|
||||
"json.nugget.version.hover": "最新版本: {0}",
|
||||
"json.project.default": "預設 project.json"
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"status.400": "要求不正確。因為語法錯誤而無法完成要求。",
|
||||
"status.401": "未經授權。伺服器拒絕回應。",
|
||||
"status.403": "禁止。伺服器拒絕回應。",
|
||||
"status.404": "找不到。找不到要求的位置。",
|
||||
"status.405": "不允許的方法。使用了該位置未支援的要求方法提出要求。",
|
||||
"status.406": "無法接受。伺服器只能產生用戶端無法接受的回應。",
|
||||
"status.407": "需要 Proxy 驗證。用戶端必須先以 Proxy 自我驗證。",
|
||||
"status.408": "要求逾時。伺服器在等候要求時逾時。",
|
||||
"status.409": "衝突。要求中存在衝突而無法予以完成。",
|
||||
"status.410": "已移走。要求的頁面已無法使用。",
|
||||
"status.411": "需要長度。未定義 \"Content-Length\"。",
|
||||
"status.412": "先決條件失敗。伺服器將要求中指定的先決條件評估為 False。",
|
||||
"status.413": "要求實體過大。伺服器將因為要求實體過大而不接受此要求。",
|
||||
"status.414": "要求 URI 過長。伺服器將因為要求 URI 過長而不接受此要求。",
|
||||
"status.415": "不支援的媒體類型。伺服器將因為不支援此媒體類型而不接受此要求。",
|
||||
"status.416": "HTTP 狀態碼 {0}",
|
||||
"status.500": "內部伺服器錯誤。",
|
||||
"status.501": "未實作。伺服器無法辨識要求方法,或缺少完成要求的能力。",
|
||||
"status.503": "服務無法使用。伺服器目前無法使用 (已超載或關閉)。"
|
||||
}
|
||||
Reference in New Issue
Block a user