mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Merge VS Code 1.23.1 (#1520)
This commit is contained in:
@@ -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."
|
||||
],
|
||||
"cssserver.name": "CSS 언어 서버",
|
||||
"folding.start": "영역 접기 시작",
|
||||
"folding.end": "접기 영역 끝"
|
||||
}
|
||||
81
i18n/kor/extensions/css-language-features/package.i18n.json
Normal file
81
i18n/kor/extensions/css-language-features/package.i18n.json
Normal file
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"displayName": "CSS 언어 기능",
|
||||
"description": "CSS, LESS 및 SCSS 파일에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"css.title": "CSS",
|
||||
"css.lint.argumentsInColorFunction.desc": "잘못된 매개 변수 수",
|
||||
"css.lint.boxModel.desc": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
|
||||
"css.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
|
||||
"css.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
|
||||
"css.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
|
||||
"css.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
|
||||
"css.lint.fontFaceProperties.desc": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
|
||||
"css.lint.hexColorLength.desc": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.",
|
||||
"css.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
|
||||
"css.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
|
||||
"css.lint.important.desc": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
|
||||
"css.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
|
||||
"css.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.",
|
||||
"css.lint.universalSelector.desc": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.",
|
||||
"css.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
|
||||
"css.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
|
||||
"css.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.",
|
||||
"css.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
|
||||
"css.trace.server.desc": "VS Code와 CSS 언어 서버 간 통신을 추적합니다.",
|
||||
"css.validate.title": "CSS 유효성 검사 및 문제 심각도를 제어합니다.",
|
||||
"css.validate.desc": "모든 유효성 검사 사용 또는 사용 안 함",
|
||||
"less.title": "LESS",
|
||||
"less.lint.argumentsInColorFunction.desc": "잘못된 매개 변수 수",
|
||||
"less.lint.boxModel.desc": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
|
||||
"less.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
|
||||
"less.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
|
||||
"less.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
|
||||
"less.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
|
||||
"less.lint.fontFaceProperties.desc": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
|
||||
"less.lint.hexColorLength.desc": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.",
|
||||
"less.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
|
||||
"less.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
|
||||
"less.lint.important.desc": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
|
||||
"less.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
|
||||
"less.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.",
|
||||
"less.lint.universalSelector.desc": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.",
|
||||
"less.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
|
||||
"less.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
|
||||
"less.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.",
|
||||
"less.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
|
||||
"less.validate.title": "LESS 유효성 검사 및 문제 심각도를 제어합니다.",
|
||||
"less.validate.desc": "모든 유효성 검사 사용 또는 사용 안 함",
|
||||
"scss.title": "SCSS(Sass)",
|
||||
"scss.lint.argumentsInColorFunction.desc": "잘못된 매개 변수 수",
|
||||
"scss.lint.boxModel.desc": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
|
||||
"scss.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
|
||||
"scss.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
|
||||
"scss.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
|
||||
"scss.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
|
||||
"scss.lint.fontFaceProperties.desc": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
|
||||
"scss.lint.hexColorLength.desc": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.",
|
||||
"scss.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
|
||||
"scss.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
|
||||
"scss.lint.important.desc": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
|
||||
"scss.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
|
||||
"scss.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.",
|
||||
"scss.lint.universalSelector.desc": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.",
|
||||
"scss.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
|
||||
"scss.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
|
||||
"scss.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.",
|
||||
"scss.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
|
||||
"scss.validate.title": "SCSS 유효성 검사 및 문제 심각도를 제어합니다.",
|
||||
"scss.validate.desc": "모든 유효성 검사 사용 또는 사용 안 함",
|
||||
"less.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"scss.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"css.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"css.colorDecorators.enable.deprecationMessage": "`css.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
|
||||
"scss.colorDecorators.enable.deprecationMessage": "`scss.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
|
||||
"less.colorDecorators.enable.deprecationMessage": "`less.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다."
|
||||
}
|
||||
@@ -2,80 +2,10 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"displayName": "CSS 언어 기능",
|
||||
"description": "CSS, LESS 및 SCSS 파일에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"css.title": "CSS",
|
||||
"css.lint.argumentsInColorFunction.desc": "잘못된 매개 변수 수",
|
||||
"css.lint.boxModel.desc": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
|
||||
"css.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
|
||||
"css.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
|
||||
"css.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
|
||||
"css.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
|
||||
"css.lint.fontFaceProperties.desc": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
|
||||
"css.lint.hexColorLength.desc": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.",
|
||||
"css.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
|
||||
"css.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
|
||||
"css.lint.important.desc": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
|
||||
"css.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
|
||||
"css.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.",
|
||||
"css.lint.universalSelector.desc": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.",
|
||||
"css.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
|
||||
"css.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
|
||||
"css.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.",
|
||||
"css.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
|
||||
"css.trace.server.desc": "VS Code와 CSS 언어 서버 간 통신을 추적합니다.",
|
||||
"css.validate.title": "CSS 유효성 검사 및 문제 심각도를 제어합니다.",
|
||||
"css.validate.desc": "모든 유효성 검사 사용 또는 사용 안 함",
|
||||
"less.title": "LESS",
|
||||
"less.lint.argumentsInColorFunction.desc": "잘못된 매개 변수 수",
|
||||
"less.lint.boxModel.desc": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
|
||||
"less.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
|
||||
"less.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
|
||||
"less.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
|
||||
"less.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
|
||||
"less.lint.fontFaceProperties.desc": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
|
||||
"less.lint.hexColorLength.desc": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.",
|
||||
"less.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
|
||||
"less.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
|
||||
"less.lint.important.desc": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
|
||||
"less.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
|
||||
"less.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.",
|
||||
"less.lint.universalSelector.desc": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.",
|
||||
"less.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
|
||||
"less.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
|
||||
"less.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.",
|
||||
"less.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
|
||||
"less.validate.title": "LESS 유효성 검사 및 문제 심각도를 제어합니다.",
|
||||
"less.validate.desc": "모든 유효성 검사 사용 또는 사용 안 함",
|
||||
"scss.title": "SCSS(Sass)",
|
||||
"scss.lint.argumentsInColorFunction.desc": "잘못된 매개 변수 수",
|
||||
"scss.lint.boxModel.desc": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.",
|
||||
"scss.lint.compatibleVendorPrefixes.desc": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.",
|
||||
"scss.lint.duplicateProperties.desc": "중복된 스타일 정의를 사용하지 마세요.",
|
||||
"scss.lint.emptyRules.desc": "빈 규칙 집합을 사용하지 마세요.",
|
||||
"scss.lint.float.desc": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.",
|
||||
"scss.lint.fontFaceProperties.desc": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.",
|
||||
"scss.lint.hexColorLength.desc": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.",
|
||||
"scss.lint.idSelector.desc": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.",
|
||||
"scss.lint.ieHack.desc": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.",
|
||||
"scss.lint.important.desc": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.",
|
||||
"scss.lint.importStatement.desc": "Import 문은 병렬로 로드되지 않습니다.",
|
||||
"scss.lint.propertyIgnoredDueToDisplay.desc": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.",
|
||||
"scss.lint.universalSelector.desc": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.",
|
||||
"scss.lint.unknownProperties.desc": "알 수 없는 속성입니다.",
|
||||
"scss.lint.unknownVendorSpecificProperties.desc": "알 수 없는 공급업체 관련 속성입니다.",
|
||||
"scss.lint.vendorPrefix.desc": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.",
|
||||
"scss.lint.zeroUnits.desc": "0에는 단위가 필요하지 않습니다.",
|
||||
"scss.validate.title": "SCSS 유효성 검사 및 문제 심각도를 제어합니다.",
|
||||
"scss.validate.desc": "모든 유효성 검사 사용 또는 사용 안 함",
|
||||
"less.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"scss.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"css.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"css.colorDecorators.enable.deprecationMessage": "`css.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
|
||||
"scss.colorDecorators.enable.deprecationMessage": "`scss.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
|
||||
"less.colorDecorators.enable.deprecationMessage": "`less.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다."
|
||||
"displayName": "CSS 언어 기본",
|
||||
"description": "CSS,LESS,SCSS 파일에서 구문 강조 표시와 괄호 일치를 제공합니다."
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
@@ -35,7 +35,7 @@
|
||||
"emmetExtensionsPath": "Emmet 프로필 및 코드 조각이 포함된 폴더의 경로입니다.'",
|
||||
"emmetShowExpandedAbbreviation": "확장된 emmet 약어를 제안으로 표시합니다.\n\"inMarkupAndStylesheetFilesOnly\" 옵션이 html, haml, jade, slim, xml, xsl, css, scss, sass, less 및 stylus에 적용됩니다.\n\"always\" 옵션이 마크업/css에 관계없이 파일의 모든 부분에 적용됩니다.",
|
||||
"emmetShowAbbreviationSuggestions": "가능한 emmet 약어를 제안으로 표시합니다. 스타일시트에는 적용되지 않고 emmet.showExpandedAbbreviation이 \"never\"로 설정되어 있을 때도 적용되지 않습니다.",
|
||||
"emmetIncludeLanguages": "기본 지원되지 않는 언어에서 emmet 약어를 사용합니다. 언어와 emmet 지원 언어 사이에 매핑을 추가합니다.\n예: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
|
||||
"emmetIncludeLanguages": "기본 지원되지 않는 언어에서 Emmet 약어를 사용하도록 설정합니다. 언어와 emmet 지원 언어 사이에 매핑을 추가합니다.\n예: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
|
||||
"emmetVariables": "emmet 조각에 사용되는 변수",
|
||||
"emmetTriggerExpansionOnTab": "사용하도록 설정하면 emmet 약어는 Tab 키를 눌렀을 때 확장됩니다.",
|
||||
"emmetPreferences": "Emmet의 일부 작업 및 해결 프로그램의 동작을 수정하는 데 사용되는 기본 설정입니다.",
|
||||
@@ -59,5 +59,7 @@
|
||||
"emmetPreferencesCssWebkitProperties": "`-`로 시작하는 Emmet 약어에서 사용될 때 'webkit' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'webkit' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
|
||||
"emmetPreferencesCssMozProperties": "`-`로 시작하는 Emmet 약어에서 사용될 때 'moz' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'moz' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
|
||||
"emmetPreferencesCssOProperties": "`-`로 시작하는 emmet 약어에서 사용할 때 'o' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'o' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
|
||||
"emmetPreferencesCssMsProperties": "`-`로 시작하는 emmet 약어에서 사용할 때 'ms' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'ms' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다."
|
||||
"emmetPreferencesCssMsProperties": "`-`로 시작하는 emmet 약어에서 사용할 때 'ms' 공급업체 접두사를 가져오는 쉼표로 구분된 CSS 속성입니다. 항상 'ms' 접두사를 사용하지 않으려면 빈 문자열로 설정합니다.",
|
||||
"emmetPreferencesCssFuzzySearchMinScore": "유사 일치 약어가 획득해야 하는 최소 점수(0에서 1 사이)입니다. 값이 낮을수록 가양성 일치 항목이 늘 수 있고, 값이 높을수록 가능한 일치 항목이 줄 수 있습니다.",
|
||||
"emmetOptimizeStylesheetParsing": "False로 설정할 경우 전체 파일이 구문 분석되어 현재 위치가 Emmet 약어 확장에 유효한지 확인합니다. True로 설정할 경우 css/scss/less 파일에서 현재 위치 주변의 콘텐츠만 구문 분석합니다."
|
||||
}
|
||||
@@ -11,9 +11,7 @@
|
||||
"create branch": "$(plus) 새 분기 생성",
|
||||
"repourl": "리포지토리 URL",
|
||||
"parent": "부모 디렉터리",
|
||||
"cancel": "$(sync~spin) 리포지토리를 복제하는 중... 취소하려면 클릭하세요.",
|
||||
"cancel tooltip": "복제 취소",
|
||||
"cloning": "Git 리포지토리를 복제하는 중...",
|
||||
"cloning": "Git 리포지토리 '{0}'을(를) 복제하는 중...",
|
||||
"openrepo": "리포지토리 열기",
|
||||
"proposeopen": "복제된 리포지토리를 여시겠습니까?",
|
||||
"init": "Git 리포지토리를 초기화할 작업 영역 폴더 선택",
|
||||
@@ -75,7 +73,7 @@
|
||||
"ok": "확인",
|
||||
"push with tags success": "태그와 함께 푸시되었습니다.",
|
||||
"pick remote": "'{0}' 분기를 다음에 게시하려면 원격을 선택하세요.",
|
||||
"sync is unpredictable": "이 작업은 '{0}' 간에 커밋을 푸시하고 풀합니다.",
|
||||
"sync is unpredictable": "이 작업은 '{0}/{1}' 간에 커밋을 푸시하고 풀합니다. ",
|
||||
"never again": "다시 표시 안 함",
|
||||
"no remotes to publish": "리포지토리에 게시하도록 구성된 원격이 없습니다.",
|
||||
"no changes stash": "스태시할 변경 내용이 없습니다.",
|
||||
|
||||
@@ -77,6 +77,7 @@
|
||||
"config.showInlineOpenFileAction": "Git 변경점 보기에서 파일 열기 동작 줄을 표시할지의 여부를 제어합니다.",
|
||||
"config.inputValidation": "커밋 메시지 입력 유효성 검사를 언제 표시할지 제어합니다.",
|
||||
"config.detectSubmodules": "Git 하위 모듈을 자동으로 검색할지 여부를 제어합니다.",
|
||||
"config.detectSubmodulesLimit": "Git submodules 검출 개수의 제한을 제어합니다.",
|
||||
"colors.modified": "수정된 리소스의 색상입니다.",
|
||||
"colors.deleted": "삭제된 리소스의 색상입니다.",
|
||||
"colors.untracked": "추적되지 않은 리소스의 색상입니다.",
|
||||
|
||||
@@ -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."
|
||||
],
|
||||
"htmlserver.name": "HTML 언어 서버",
|
||||
"folding.start": "영역 접기 시작",
|
||||
"folding.end": "접기 영역 끝"
|
||||
}
|
||||
33
i18n/kor/extensions/html-language-features/package.i18n.json
Normal file
33
i18n/kor/extensions/html-language-features/package.i18n.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"displayName": "HTML 언어 기능",
|
||||
"description": "HTML, Razor 및 Handlebar 파일에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"html.format.enable.desc": "기본 HTML 포맷터를 사용하거나 사용하지 않습니다.",
|
||||
"html.format.wrapLineLength.desc": "한 줄당 최대 문자 수입니다(0 = 사용 안 함).",
|
||||
"html.format.unformatted.desc": "쉼표로 분리된 태그 목록으로, 서식을 다시 지정해서는 안 됩니다. https://www.w3.org/TR/html5/dom.html#phrasing-content에 나열된 모든 태그의 기본값은 'null'로 설정됩니다.",
|
||||
"html.format.contentUnformatted.desc": "쉼표로 분리된 태그 목록으로, 콘텐츠의 서식을 다시 지정해서는 안 됩니다. 'pre' 태그의 기본값은 'null'로 설정됩니다.",
|
||||
"html.format.indentInnerHtml.desc": "<head> 및 <body> 섹션을 들여쓰기합니다.",
|
||||
"html.format.preserveNewLines.desc": "요소 앞에 있는 기존 줄 바꿈의 유지 여부입니다. 요소 앞에만 적용되며 태그 안이나 텍스트에는 적용되지 않습니다.",
|
||||
"html.format.maxPreserveNewLines.desc": "청크 한 개에 유지할 수 있는 최대 줄 바꿈 수입니다. 무제한일 때는 'null'을 사용합니다.",
|
||||
"html.format.indentHandlebars.desc": "{{#foo}} 및 {{/foo}}를 서식 지정하고 들여쓰기합니다.",
|
||||
"html.format.endWithNewline.desc": "줄 바꿈으로 끝납니다.",
|
||||
"html.format.extraLiners.desc": "쉼표로 분리된 태그 목록으로 앞에 줄 바꿈을 추가로 넣어야 합니다. \"head, body, /html\"의 기본값은 'null'로 설정됩니다.",
|
||||
"html.format.wrapAttributes.desc": "특성을 래핑합니다.",
|
||||
"html.format.wrapAttributes.auto": "줄 길이를 초과하는 경우에만 특성을 래핑합니다.",
|
||||
"html.format.wrapAttributes.force": "첫 번째 특성을 제외한 각 특성을 래핑합니다.",
|
||||
"html.format.wrapAttributes.forcealign": "첫 번째 특성을 제외한 각 특성을 래핑하고 정렬된 상태를 유지합니다.",
|
||||
"html.format.wrapAttributes.forcemultiline": "각 특성을 래핑합니다.",
|
||||
"html.suggest.angular1.desc": "기본 제공 HTML 언어 지원에서 Angular V1 태그 및 속성을 제안하는지 여부를 구성합니다.",
|
||||
"html.suggest.ionic.desc": "기본 제공 HTML 언어 지원에서 Ionic 태그, 속성 및 값을 제안하는지 여부를 구성합니다.",
|
||||
"html.suggest.html5.desc": "기본 제공 HTML 언어 지원에서 HTML5 태그, 속성 및 값을 제안하는지 여부를 구성합니다.",
|
||||
"html.trace.server.desc": "VS Code와 HTML 언어 서버 간 통신을 추적합니다.",
|
||||
"html.validate.scripts": "기본 제공 HTML 언어 지원에서 포함 스크립트의 유효성을 검사하는지 여부를 구성합니다.",
|
||||
"html.validate.styles": "기본 제공 HTML 언어 지원에서 포함 스타일의 유효성을 검사하는지 여부를 구성합니다.",
|
||||
"html.autoClosingTags": "HTML 태그의 자동 닫기를 사용하거나 사용하지 않습니다."
|
||||
}
|
||||
@@ -2,33 +2,10 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"displayName": "HTML 언어 기능",
|
||||
"description": "HTML, Razor 및 Handlebar 파일에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"html.format.enable.desc": "기본 HTML 포맷터를 사용하거나 사용하지 않습니다.",
|
||||
"html.format.wrapLineLength.desc": "한 줄당 최대 문자 수입니다(0 = 사용 안 함).",
|
||||
"html.format.unformatted.desc": "쉼표로 분리된 태그 목록으로, 서식을 다시 지정해서는 안 됩니다. https://www.w3.org/TR/html5/dom.html#phrasing-content에 나열된 모든 태그의 기본값은 'null'로 설정됩니다.",
|
||||
"html.format.contentUnformatted.desc": "쉼표로 분리된 태그 목록으로, 콘텐츠의 서식을 다시 지정해서는 안 됩니다. 'pre' 태그의 기본값은 'null'로 설정됩니다.",
|
||||
"html.format.indentInnerHtml.desc": "<head> 및 <body> 섹션을 들여쓰기합니다.",
|
||||
"html.format.preserveNewLines.desc": "요소 앞에 있는 기존 줄 바꿈의 유지 여부입니다. 요소 앞에만 적용되며 태그 안이나 텍스트에는 적용되지 않습니다.",
|
||||
"html.format.maxPreserveNewLines.desc": "청크 한 개에 유지할 수 있는 최대 줄 바꿈 수입니다. 무제한일 때는 'null'을 사용합니다.",
|
||||
"html.format.indentHandlebars.desc": "{{#foo}} 및 {{/foo}}를 서식 지정하고 들여쓰기합니다.",
|
||||
"html.format.endWithNewline.desc": "줄 바꿈으로 끝납니다.",
|
||||
"html.format.extraLiners.desc": "쉼표로 분리된 태그 목록으로 앞에 줄 바꿈을 추가로 넣어야 합니다. \"head, body, /html\"의 기본값은 'null'로 설정됩니다.",
|
||||
"html.format.wrapAttributes.desc": "특성을 래핑합니다.",
|
||||
"html.format.wrapAttributes.auto": "줄 길이를 초과하는 경우에만 특성을 래핑합니다.",
|
||||
"html.format.wrapAttributes.force": "첫 번째 특성을 제외한 각 특성을 래핑합니다.",
|
||||
"html.format.wrapAttributes.forcealign": "첫 번째 특성을 제외한 각 특성을 래핑하고 정렬된 상태를 유지합니다.",
|
||||
"html.format.wrapAttributes.forcemultiline": "각 특성을 래핑합니다.",
|
||||
"html.suggest.angular1.desc": "기본 제공 HTML 언어 지원에서 Angular V1 태그 및 속성을 제안하는지 여부를 구성합니다.",
|
||||
"html.suggest.ionic.desc": "기본 제공 HTML 언어 지원에서 Ionic 태그, 속성 및 값을 제안하는지 여부를 구성합니다.",
|
||||
"html.suggest.html5.desc": "기본 제공 HTML 언어 지원에서 HTML5 태그, 속성 및 값을 제안하는지 여부를 구성합니다.",
|
||||
"html.trace.server.desc": "VS Code와 HTML 언어 서버 간 통신을 추적합니다.",
|
||||
"html.validate.scripts": "기본 제공 HTML 언어 지원에서 포함 스크립트의 유효성을 검사하는지 여부를 구성합니다.",
|
||||
"html.validate.styles": "기본 제공 HTML 언어 지원에서 포함 스타일의 유효성을 검사하는지 여부를 구성합니다.",
|
||||
"html.experimental.syntaxFolding": "구문 인식 접기 마커를 설정하거나 해제합니다.",
|
||||
"html.autoClosingTags": "HTML 태그의 자동 닫기를 사용하거나 사용하지 않습니다."
|
||||
"displayName": "HTML 언어 기본",
|
||||
"description": "HTML 파일에서 구문 강조 표시, 괄호 일치 및 코드 조각을 제공합니다."
|
||||
}
|
||||
@@ -2,10 +2,11 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"description": "VSCode에 Jake 기능을 추가할 확장입니다.",
|
||||
"displayName": "VSCode에 대한 Jake 지원",
|
||||
"jake.taskDefinition.type.description": "사용자 지정할 Jake 작업입니다.",
|
||||
"jake.taskDefinition.file.description": "작업을 제공하는 Jake 파일이며 생략할 수 있습니다.",
|
||||
|
||||
@@ -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."
|
||||
],
|
||||
"jsonserver.name": "JSON 언어 서버"
|
||||
}
|
||||
20
i18n/kor/extensions/json-language-features/package.i18n.json
Normal file
20
i18n/kor/extensions/json-language-features/package.i18n.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"displayName": "JSON 언어 기능",
|
||||
"description": "JSON 파일에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"json.schemas.desc": "현재 프로젝트에서 스키마를 JSON 파일에 연결",
|
||||
"json.schemas.url.desc": "현재 디렉터리에 있는 스키마의 URL 또는 상대 경로",
|
||||
"json.schemas.fileMatch.desc": "스키마에 대한 JSON 파일을 확인할 때 일치할 파일 패턴의 배열입니다.",
|
||||
"json.schemas.fileMatch.item.desc": "스키마에 대한 JSON 파일을 확인할 때 일치할 '*'를 포함할 수 있는 파일 패턴입니다.",
|
||||
"json.schemas.schema.desc": "지정된 URL에 대한 스키마 정의입니다. 스키마 URL에 대한 액세스 방지를 위해서만 스키마를 제공해야 합니다.",
|
||||
"json.format.enable.desc": "기본 JSON 포맷터 사용/사용 안 함(다시 시작해야 함)",
|
||||
"json.tracing.desc": "VS Code와 JSON 언어 서버 간 통신을 추적합니다.",
|
||||
"json.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"json.colorDecorators.enable.deprecationMessage": "`json.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다."
|
||||
}
|
||||
@@ -2,20 +2,10 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"displayName": "JSON 언어 기능",
|
||||
"description": "JSON 파일에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"json.schemas.desc": "현재 프로젝트에서 스키마를 JSON 파일에 연결",
|
||||
"json.schemas.url.desc": "현재 디렉터리에 있는 스키마의 URL 또는 상대 경로",
|
||||
"json.schemas.fileMatch.desc": "스키마에 대한 JSON 파일을 확인할 때 일치할 파일 패턴의 배열입니다.",
|
||||
"json.schemas.fileMatch.item.desc": "스키마에 대한 JSON 파일을 확인할 때 일치할 '*'를 포함할 수 있는 파일 패턴입니다.",
|
||||
"json.schemas.schema.desc": "지정된 URL에 대한 스키마 정의입니다. 스키마 URL에 대한 액세스 방지를 위해서만 스키마를 제공해야 합니다.",
|
||||
"json.format.enable.desc": "기본 JSON 포맷터 사용/사용 안 함(다시 시작해야 함)",
|
||||
"json.tracing.desc": "VS Code와 JSON 언어 서버 간 통신을 추적합니다.",
|
||||
"json.colorDecorators.enable.desc": "색 데코레이터 사용 또는 사용 안 함",
|
||||
"json.colorDecorators.enable.deprecationMessage": "`json.colorDecorators.enable` 설정은 `editor.colorDecorators`를 위해 사용되지 않습니다.",
|
||||
"json.experimental.syntaxFolding": "구문 인식 접기 마커를 설정하거나 해제합니다."
|
||||
"displayName": "JSON 언어 기본",
|
||||
"description": "JSON 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다. "
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
|
||||
@@ -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."
|
||||
],
|
||||
"onPreviewStyleLoadError": "'markdown.styles': {0}을 불러올 수 없음"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"lockedPreviewTitle": "[미리 보기] {0}",
|
||||
"previewTitle": "미리 보기 {0}"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"preview.securityMessage.text": "이 문서에서 일부 콘텐츠가 사용하지 않도록 설정되었습니다.",
|
||||
"preview.securityMessage.title": "Markdown 미리 보기에서 잠재적으로 안전하지 않거나 보안되지 않은 콘텐츠가 사용하지 않도록 설정되어 있습니다. 이 콘텐츠나 스크립트를 허용하려면 Markdown 미리 보기 보안 설정을 변경하세요.",
|
||||
"preview.securityMessage.label": "콘텐츠 사용할 수 없음 보안 경고"
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"strict.title": "Strict",
|
||||
"strict.description": "보안 콘텐츠만 로드",
|
||||
"insecureLocalContent.title": "안전하지 않은 로컬 콘텐츠 허용",
|
||||
"insecureLocalContent.description": "localhost에서 제공되는 http를 통한 콘텐츠 로드 사용",
|
||||
"insecureContent.title": "안전하지 않은 콘텐츠 허용",
|
||||
"insecureContent.description": "http를 통한 콘텐츠 로드 사용",
|
||||
"disable.title": "사용 안 함",
|
||||
"disable.description": "모든 콘텐츠 및 스크립트 실행을 허용합니다. 권장하지 않습니다.",
|
||||
"moreInfo.title": "추가 정보",
|
||||
"enableSecurityWarning.title": "이 작업 영역에서 미리 보기 보안 경고 사용",
|
||||
"disableSecurityWarning.title": "이 작업 영역에서 미리보기 보안 경고 사용 안 함",
|
||||
"toggleSecurityWarning.description": "콘텐츠 보안 수준에 영향을 주지 않습니다.",
|
||||
"preview.showPreviewSecuritySelector.title": "이 작업 영역에 대해 Markdown 미리 보기의 보안 설정 선택"
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"displayName": "Markdown 언어 기능",
|
||||
"description": "Markdown에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"markdown.preview.breaks.desc": "마크다운 미리 보기에서 줄바꿈 렌더링 방식을 설정합니다. 'true'로 설정하면 모든 행에 대해 <br>이(가) 생성됩니다.",
|
||||
"markdown.preview.linkify": "Markdown 미리 보기에서 URL 같은 텍스트를 링크로 변환을 사용하거나 사용하지 않도록 설정합니다.",
|
||||
"markdown.preview.doubleClickToSwitchToEditor.desc": "markdown 미리 보기에서 두 번 클릭하여 편집기로 전환합니다.",
|
||||
"markdown.preview.fontFamily.desc": "markdown 미리 보기에서 사용되는 글꼴 패밀리를 제어합니다.",
|
||||
"markdown.preview.fontSize.desc": "markdown 미리 보기에서 사용되는 글꼴 크기(픽셀)를 제어합니다.",
|
||||
"markdown.preview.lineHeight.desc": "markdown 미리 보기에 사용되는 줄 높이를 제어합니다. 이 숫자는 글꼴 크기에 상대적입니다.",
|
||||
"markdown.preview.markEditorSelection.desc": "markdown 미리 보기에 현재 편집기 선택을 표시합니다.",
|
||||
"markdown.preview.scrollEditorWithPreview.desc": "Markdown 미리 보기를 스크롤할 때 편집기의 보기를 업데이트합니다.",
|
||||
"markdown.preview.scrollPreviewWithEditor.desc": "Markdown 편집기를 스크롤할 때 미리 보기의 보기를 업데이트합니다.",
|
||||
"markdown.preview.scrollPreviewWithEditorSelection.desc": "[사용되지 않음] markdown 미리 보기를 스크롤하여 편집기에서 현재 선택한 줄을 표시합니다.",
|
||||
"markdown.preview.scrollPreviewWithEditorSelection.deprecationMessage": "이 설정은 'markdown.preview.scrollPreviewWithEditor'로 대체되었으며 더 이상 영향을 주지 않습니다.",
|
||||
"markdown.preview.title": "미리 보기 열기",
|
||||
"markdown.previewFrontMatter.dec": "markdown 미리 보기에서 YAML 전문을 렌더링할 방법을 설정합니다. '숨기기' 기능을 사용하면 전문이 제거되고, 그러지 않으면 전문이 markdown 콘텐츠로 처리됩니다.",
|
||||
"markdown.previewSide.title": "측면에서 미리 보기 열기",
|
||||
"markdown.showLockedPreviewToSide.title": "측면에서 잠긴 미리 보기 열기",
|
||||
"markdown.showSource.title": "소스 표시",
|
||||
"markdown.styles.dec": "markdown 미리 보기에서 사용할 CSS 스타일시트의 URL 또는 로컬 경로 목록입니다. 상대 경로는 탐색기에서 열린 폴더를 기준으로 해석됩니다. 열린 폴더가 없으면 markdown 파일의 위치를 기준으로 해석됩니다. 모든 '\\'는 '\\\\'로 써야 합니다.",
|
||||
"markdown.showPreviewSecuritySelector.title": "미리 보기 보안 설정 변경",
|
||||
"markdown.trace.desc": "Markdown 확장에 대해 디버그 로깅을 사용하도록 설정합니다.",
|
||||
"markdown.preview.refresh.title": "미리 보기 새로 고침",
|
||||
"markdown.preview.toggleLock.title": "미리 보기 잠금 설정/해제"
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
|
||||
11
i18n/kor/extensions/npm/out/npmView.i18n.json
Normal file
11
i18n/kor/extensions/npm/out/npmView.i18n.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"npm.noDebugOptions": "스크립트에 노드 디버그 옵션(예: '--inspect-brk')이 없으므로 디버깅에 사용할 \"{0}\"을(를) 시작할 수 없습니다.",
|
||||
"npm.scriptInvalid": "\"{0}\" 스크립트를 찾을 수 없습니다. 뷰로 새로 고쳐 보세요."
|
||||
}
|
||||
10
i18n/kor/extensions/npm/out/tasks.i18n.json
Normal file
10
i18n/kor/extensions/npm/out/tasks.i18n.json
Normal file
@@ -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."
|
||||
],
|
||||
"npm.parseError": "Npm 작업 검색: {0} 파일을 구문 분석하지 못했습니다. "
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
@@ -12,7 +12,15 @@
|
||||
"config.npm.runSilent": " `--silent` 옵션으로 npm 명령 실행.",
|
||||
"config.npm.packageManager": "스크립트를 실행하는 데 사용하는 패키지 관리자.",
|
||||
"config.npm.exclude": "자동 스크립트 검색에서 제외할 폴더에 대한 Glob 패턴을 구성합니다.",
|
||||
"config.npm.enableScriptExplorer": "작업 영역에 'package.json' 파일이 포함되어 있는 경우 npm 스크립트에 대한 탐색기 뷰를 사용하도록 설정합니다.",
|
||||
"npm.parseError": "Npm 작업 검색: {0} 파일을 구문 분석하지 못했습니다.",
|
||||
"taskdef.script": "사용자 지정할 npm 스크립트입니다.",
|
||||
"taskdef.path": "스크립트를 제공하는 package.json 파일의 폴더에 대한 경로이며 생략할 수 있습니다."
|
||||
"taskdef.path": "스크립트를 제공하는 package.json 파일의 폴더에 대한 경로이며 생략할 수 있습니다.",
|
||||
"view.name": "Npm 스크립트",
|
||||
"command.refresh": "새로 고침",
|
||||
"command.run": "실행",
|
||||
"command.debug": "디버그",
|
||||
"command.openScript": "열기",
|
||||
"npm.scriptInvalid": "'{0}' 스크립트를 찾을 수 없습니다. 뷰를 새로 고쳐 보세요.",
|
||||
"npm.noDebugOptions": "스크립트에 노드 디버그 옵션(예: '--inspect-brk')이 없으므로 디버깅에 사용할 '{0}'을(를) 시작할 수 없습니다."
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"php.useExecutablePath": "PHP 파일을 lint하기 위해 {0}(작업 영역 설정으로 정의됨)의 실행을 허용하시겠습니까?",
|
||||
"php.yes": "허용",
|
||||
"php.no": "허용 안 함",
|
||||
"wrongExecutable": "{0}은(는) 유효한 PHP 실행 파일이 아니기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
|
||||
"noExecutable": "PHP 실행 파일이 설정되지 않았기 때문에 유효성을 검사할 수 없습니다. 'php.validate.executablePath' 설정을 사용하여 PHP 실행 파일을 구성하세요.",
|
||||
"unknownReason": "{0} 경로를 사용하여 php를 실행하지 못했습니다. 이유를 알 수 없습니다."
|
||||
}
|
||||
18
i18n/kor/extensions/php-language-features/package.i18n.json
Normal file
18
i18n/kor/extensions/php-language-features/package.i18n.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"configuration.suggest.basic": "기본 제공 PHP 언어 제안을 사용하는지 여부를 구성합니다. 지원에서는 PHP 전역 및 변수를 제안합니다.",
|
||||
"configuration.validate.enable": "기본 제공 PHP 유효성 검사를 사용하거나 사용하지 않습니다.",
|
||||
"configuration.validate.executablePath": "PHP 실행 파일을 가리킵니다.",
|
||||
"configuration.validate.run": "저장 시 또는 입력 시 Linter의 실행 여부입니다.",
|
||||
"configuration.title": "PHP",
|
||||
"commands.categroy.php": "PHP",
|
||||
"command.untrustValidationExecutable": "PHP 유효성 검사 실행 파일을 허용하지 않음(작업\n 영역 설정으로 정의됨)",
|
||||
"displayName": "PHP 언어 기능",
|
||||
"description": "PHP 파일에 대한 다양한 언어 지원을 제공합니다. "
|
||||
}
|
||||
@@ -2,17 +2,10 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"configuration.suggest.basic": "기본 제공 PHP 언어 제안을 사용하는지 여부를 구성합니다. 지원에서는 PHP 전역 및 변수를 제안합니다.",
|
||||
"configuration.validate.enable": "기본 제공 PHP 유효성 검사를 사용하거나 사용하지 않습니다.",
|
||||
"configuration.validate.executablePath": "PHP 실행 파일을 가리킵니다.",
|
||||
"configuration.validate.run": "저장 시 또는 입력 시 Linter의 실행 여부입니다.",
|
||||
"configuration.title": "PHP",
|
||||
"commands.categroy.php": "PHP",
|
||||
"command.untrustValidationExecutable": "PHP 유효성 검사 실행 파일을 허용하지 않음(작업\n 영역 설정으로 정의됨)",
|
||||
"displayName": "PHP 언어 기능",
|
||||
"description": "PHP 파일에 대해 IntelliSense, lint 및 언어 기본을 제공합니다."
|
||||
"displayName": "PHP 언어 기본",
|
||||
"description": "PHP 파일에서 구문 강조 표시 및 괄호 일치를 제공합니다. "
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"typescript.projectConfigNoWorkspace": "TypeScript 또는 JavaScript 프로젝트를 사용하려면 VS Code의 폴더를 여세요.",
|
||||
"typescript.projectConfigUnsupportedFile": "TypeScript 또는 JavaScript 프로젝트를 확인할 수 없습니다. 지원되지 않는 파일 형식",
|
||||
"typescript.projectConfigCouldNotGetInfo": "TypeScript 또는 JavaScript 프로젝트를 확인할 수 없습니다.",
|
||||
"typescript.noTypeScriptProjectConfig": "파일이 TypeScript 프로젝트의 일부가 아닙니다. 자세히 알아보려면 [여기]({0})를 클릭하세요.",
|
||||
"typescript.noJavaScriptProjectConfig": "파일이 JavaScript 프로젝트의 일부가 아닙니다. 자세히 알아보려면 [여기]({0})를 클릭하세요.",
|
||||
"typescript.configureTsconfigQuickPick": "tsconfig.json 구성",
|
||||
"typescript.configureJsconfigQuickPick": "jsconfig.json 구성"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"selectCodeAction": "적용할 코드 동작 선택",
|
||||
"acquiringTypingsLabel": "typings를 가져오는 중...",
|
||||
"acquiringTypingsDetail": "IntelliSense에 대한 typings 정의를 가져오는 중입니다.",
|
||||
"autoImportLabel": "{0}에서 자동으로 가져오기"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"ts-check": "JavaScript 파일에서 의미 검사를 사용합니다. 파일의 최상단에 있어야 합니다.",
|
||||
"ts-nocheck": "JavaScript 파일에서 의미 검사를 사용하지 않습니다. 파일의 최상단에 있어야 합니다.",
|
||||
"ts-ignore": "파일의 다음 행에서 @ts-check 오류를 억제합니다."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"oneImplementationLabel": "1개 구현",
|
||||
"manyImplementationLabel": "{0}개 구현",
|
||||
"implementationsErrorLabel": "구현을 확인할 수 없음"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"typescript.jsDocCompletionItem.documentation": "JSDoc 주석"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"oraganizeImportsAction.title": "가져오기 구성"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"fixAllInFileLabel": "{0} (파일에서 모두 수정)"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"oneReferenceLabel": "참조 1개",
|
||||
"manyReferenceLabel": "참조 {0}개",
|
||||
"referenceErrorLabel": "참조를 확인할 수 없음"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"buildTscLabel": "빌드 - {0}",
|
||||
"buildAndWatchTscLabel": "보기 - {0}"
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"noServerFound": "경로 {0}이(가) 올바른 tsserver 설치를 가리키지 않습니다. 포함된 TypeScript 버전을 대신 사용합니다.",
|
||||
"serverCouldNotBeStarted": "TypeScript 언어 서버를 시작할 수 없습니다. 오류 메시지: {0}",
|
||||
"typescript.openTsServerLog.notSupported": "TS 서버 로깅을 사용하려면 TS 2.2.2 이상이 필요합니다.",
|
||||
"typescript.openTsServerLog.loggingNotEnabled": "TS 서버 로깅이 꺼져 있습니다. `typescript.tsserver.log`를 설정하고 TS 서버를 다시 시작하여 로깅을 사용하도록 설정하세요.",
|
||||
"typescript.openTsServerLog.enableAndReloadOption": "로깅 사용 및 TS 서버 다시 시작",
|
||||
"typescript.openTsServerLog.noLogFile": "TS 서버에서 로깅을 시작하지 않았습니다.",
|
||||
"openTsServerLog.openFileFailedFailed": "TS 서버 로그 파일을 열 수 없습니다.",
|
||||
"serverDiedAfterStart": "TypeScript 언어 서비스가 시작된 직후 5번 종료되었습니다. 서비스가 다시 시작되지 않습니다.",
|
||||
"serverDiedReportIssue": "문제 보고",
|
||||
"serverDied": "TypeScript 언어 서비스가 지난 5분 동안 예기치 않게 5번 종료되었습니다."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"invalidVersion": "잘못된 버전"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"channelName": "TypeScript"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"hintExclude": "프로젝트 전체에서 JavaScript/TypeScript 언어 기능을 사용하도록 설정하려면 {0}과(와) 같이 파일이 많은 폴더를 제외하세요.",
|
||||
"hintExclude.generic": "프로젝트 전체에서 JavaScript/TypeScript 언어 기능을 사용하도록 설정하려면 사용하지 않는 소스 파일이 포함된 큰 폴더를 제외하세요.",
|
||||
"large.label": "제외 구성",
|
||||
"hintExclude.tooltip": "프로젝트 전체에서 JavaScript/TypeScript 언어 기능을 사용하도록 설정하려면 사용하지 않는 소스 파일이 포함된 큰 폴더를 제외하세요."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"installingPackages": "TypeScript IntelliSense를 향상하기 위해 데이터를 페치하는 중",
|
||||
"typesInstallerInitializationFailed.title": "JavaScript 언어 기능에 대한 입력 파일을 설치할 수 없습니다. NPM이 설치되어 있는지 확인하거나 사용자 설정에서 'typescript.npm'을 구성하세요. 자세히 알아보려면 [여기]({0})를 클릭하세요.",
|
||||
"typesInstallerInitializationFailed.doNotCheckAgain": "다시 표시 안 함"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"useVSCodeVersionOption": "VS Code의 버전 사용",
|
||||
"useWorkspaceVersionOption": "작업 영역 버전 사용",
|
||||
"learnMore": "자세한 정보",
|
||||
"selectTsVersion": "JavaScript 및 TypeScript 언어 기능에 사용되는 TypeScript 버전 선택"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"couldNotLoadTsVersion": "이 경로에서 TypeScript 버전을 로드할 수 없습니다.",
|
||||
"noBundledServerFound": "잘못 동작하는 바이러스 감지 도구와 같은 다른 응용 프로그램에서 VS Code의 tsserver가 삭제되었습니다. VS Code를 다시 설치하세요."
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"displayName": "TypeScript 및 JavaScript 언어 기능",
|
||||
"description": "JavaScript 및 TypeScript에 대한 다양한 언어 지원을 제공합니다.",
|
||||
"typescript.reloadProjects.title": "프로젝트 다시 로드",
|
||||
"javascript.reloadProjects.title": "프로젝트 다시 로드",
|
||||
"configuration.typescript": "TypeScript",
|
||||
"typescript.useCodeSnippetsOnMethodSuggest.dec": "매개 변수 서명으로 함수를 완료하세요.",
|
||||
"typescript.tsdk.desc": "사용할 tsserver 및 lib*.d.ts 파일이 들어 있는 폴더 경로를 지정합니다.",
|
||||
"typescript.disableAutomaticTypeAcquisition": "자동 형식 인식을 사용하지 않습니다. TypeScript >= 2.0.6이 필요합니다.",
|
||||
"typescript.tsserver.log": "파일에 대해 TS 서버 로깅을 사용하도록 설정합니다. 이 로그는 TS 서버 문제를 진단하는 데 사용될 수 있습니다. 로그에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한 기타 정보가 포함될 수 있습니다.",
|
||||
"typescript.tsserver.pluginPaths": "Typescript 언어 서비스 플러그 인을 검색할 추가 경로입니다. TypeScript 2.3.0 이상이 필요합니다.",
|
||||
"typescript.tsserver.pluginPaths.item": "절대 또는 상대 경로입니다. 상대 경로는 작업 영역 폴더를 기준으로 확인됩니다.",
|
||||
"typescript.tsserver.trace": "TS 서버로 전송한 메시지 추적을 사용하도록 설정합니다. 이\n 추적은 TS 서버 문제를 진단하는 데 사용될 수 있습니다. 추적에는 파일 경로, 소스 코드 및 프로젝트에서 잠재적으로 중요한\n 기타 정보가 포함될 수 있습니다.",
|
||||
"typescript.validate.enable": "TypeScript 유효성 검사를 사용하거나 사용하지 않습니다.",
|
||||
"typescript.format.enable": "기본 TypeScript 포맷터를 사용하거나 사용하지 않습니다.",
|
||||
"javascript.format.enable": "기본 JavaScript 포맷터를 사용하거나 사용하지 않습니다.",
|
||||
"format.insertSpaceAfterCommaDelimiter": "쉼표 구분 기호 뒤에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceAfterConstructor": "컨스트럭터 키워드 뒤 공백 처리를 정의합니다. TypeScript >= 2.3.0이 필요합니다.",
|
||||
"format.insertSpaceAfterSemicolonInForStatements": " for 문에서 세미콜론 뒤에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceBeforeAndAfterBinaryOperators": "이항 연산자 뒤에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceAfterKeywordsInControlFlowStatements": "제어 흐름 문의 키워드 뒤에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": "익명 함수의 function 키워드 뒤에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceBeforeFunctionParenthesis": "함수 인수 괄호 앞에 오는 공백 처리를 정의합니다. TypeScript 2.1.5 이상이 필요합니다.",
|
||||
"format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": "비어 있지 않은 여는 괄호 뒤와 닫는 괄호 앞에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": "비어 있지 않은 여는 대괄호 뒤와 닫는 대괄호 앞에 오는 공백 처리를 정의합니다.",
|
||||
"format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": "비어 있지 않은 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다. TypeScript 2.3.0 이상이 필요합니다.",
|
||||
"format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": "템플릿 문자열의 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다. TypeScript >= 2.0.6이 필요합니다.",
|
||||
"format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": "JSX 식의 여는 중괄호 뒤와 닫는 중괄호 앞의 공백 처리를 정의합니다. TypeScript >= 2.0.6이 필요합니다.",
|
||||
"format.insertSpaceAfterTypeAssertion": "TypeScript에서 유형 어설션 이후 공백 처리를 정의합니다. TypeScript >= 2.4가 필요합니다.",
|
||||
"format.placeOpenBraceOnNewLineForFunctions": "함수의 새 줄에 여는 중괄호를 넣을지 정의합니다.",
|
||||
"format.placeOpenBraceOnNewLineForControlBlocks": "제어 블록의 새 줄에 여는 중괄호를 넣을지 정의합니다.",
|
||||
"javascript.validate.enable": "JavaScript 유효성 검사를 사용하거나 사용하지 않습니다.",
|
||||
"typescript.goToProjectConfig.title": "프로젝트 구성으로 이동",
|
||||
"javascript.goToProjectConfig.title": "프로젝트 구성으로 이동",
|
||||
"javascript.referencesCodeLens.enabled": "JavaScript 파일에서 CodeLense 참조를 사용/사용 안 함으로 설정합니다.",
|
||||
"typescript.referencesCodeLens.enabled": "TypeScript 파일에서 참조 CodeLense를 사용/사용 안 함으로 설정합니다. TypeScript >= 2.0.6이 필요합니다.",
|
||||
"typescript.implementationsCodeLens.enabled": "구현 CodeLens를 사용하거나 사용하지 않도록 설정합니다. TypeScript >= 2.2.0이 필요합니다.",
|
||||
"typescript.openTsServerLog.title": "TS 서버 로그 열기",
|
||||
"typescript.restartTsServer": "TS 서버 다시 시작",
|
||||
"typescript.selectTypeScriptVersion.title": "TypeScript 버전 선택",
|
||||
"typescript.reportStyleChecksAsWarnings": "스타일 검사를 경고로 보고",
|
||||
"jsDocCompletion.enabled": "자동 JSDoc 주석 사용/사용 안 함",
|
||||
"javascript.implicitProjectConfig.checkJs": "JavaScript 파일의 의미 체계 검사를 사용/사용하지 않습니다. 기존 jsconfig.json 또는 tsconfig.json 파일은 이 설정을 재정의합니다. TypeScript >=2.3.1이 필요합니다. ",
|
||||
"typescript.npm": "자동 입력 인식에 사용된 NPM 실행 파일 경로를 지정합니다. TypeScript >= 2.3.4가 필요합니다.",
|
||||
"typescript.check.npmIsInstalled": "자동 입력 인식에 대해 NPM이 설치되어 있는지 확인합니다.",
|
||||
"javascript.nameSuggestions": "JavaScript 제안 목록의 파일에서 고유한 이름 포함을 사용/사용 안 함으로 설정합니다.",
|
||||
"typescript.tsc.autoDetect": "tsc 작업의 자동 검색을 제어합니다. '해제'는 이 기능을 사용하지 않도록 설정합니다. '빌드'는 단일 실행 컴파일 작업만 만듭니다. '보기'는 컴파일 및 보기 작업만 만듭니다. '설정'은 빌드 및 보기 작업을 모두 만듭니다. 기본 옵션은 '설정'입니다.",
|
||||
"typescript.problemMatchers.tsc.label": "TypeScript 문제",
|
||||
"typescript.problemMatchers.tscWatch.label": "TypeScript 문제(감시 모드)",
|
||||
"typescript.quickSuggestionsForPaths": "가져오기 경로를 입력할 때 빠른 제안을 사용하거나 사용하지 않습니다.",
|
||||
"typescript.locale": "TypeScript 오류를 보고하는 데 사용하는 로캘을 설정합니다. TypeScript >= 2.6.0이 필요합니다. 기본값 'null'은 TypeScript 오류에 대해 VS Code의 로캘을 사용합니다.",
|
||||
"javascript.implicitProjectConfig.experimentalDecorators": "프로젝트의 일부가 아닌 JavaScript 파일에 대해 'experimentalDecorators'를 사용하거나 사용하지 않도록 설정합니다. 기존 jsconfig.json 또는 tsconfig.json 파일은 이 설정을 재정의합니다. TypeScript >=2.3.1이 필요합니다.",
|
||||
"typescript.autoImportSuggestions.enabled": "자동 가져오기 제안을 사용하거나 사용하지 않도록 설정합니다. TypeScript >=2.6.1이 필요합니다.",
|
||||
"typescript.experimental.syntaxFolding": "구문 인식 접기 마커를 설정하거나 해제합니다.",
|
||||
"taskDefinition.tsconfig.description": "TS 빌드를 정의하는 tsconfig 파일입니다.",
|
||||
"javascript.suggestionActions.enabled": "편집기에서 JavaScript 파일에 대한 제안 진단을 사용하거나 사용하지 않도록 설정합니다. TypeScript 2.8 이상이 필요합니다.",
|
||||
"typescript.suggestionActions.enabled": "편집기에서 TypeScript 파일에 대한 제안 진단을 사용하거나 사용하지 않도록 설정합니다. TypeScript 2.8 이상이 필요합니다."
|
||||
}
|
||||
@@ -6,5 +6,6 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"incompleteExtract": "완료되지 않았습니다. {1}개 항목 중 {0}개가 추출되었습니다.",
|
||||
"notFound": "zip 파일 내에 {0}이(가) 없습니다."
|
||||
}
|
||||
@@ -2,20 +2,21 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"previewOnGitHub": "GitHub에서 미리 보기",
|
||||
"loadingData": "데이터 로드 중...",
|
||||
"rateLimited": "GitHub 쿼리 제한이 초과되었습니다. 기다려 주세요.",
|
||||
"similarIssues": "유사한 문제",
|
||||
"open": "열기",
|
||||
"closed": "닫힘",
|
||||
"noResults": "결과 없음",
|
||||
"noSimilarIssues": "검색된 유사한 문제 없음",
|
||||
"settingsSearchIssue": "설정 검색 문제",
|
||||
"bugReporter": "버그 보고서",
|
||||
"performanceIssue": "성능 문제",
|
||||
"featureRequest": "기능 요청",
|
||||
"performanceIssue": "성능 문제",
|
||||
"stepsToReproduce": "재현 단계",
|
||||
"bugDescription": "문제를 안정적으로 재현시킬 수 있는 방법을 공유해주세요. 실제 결과와 예상 결과를 포함하세요. GitHub 버전의 Markdown을 지원합니다. GitHub에서 미리 볼 때 문제를 편집하고 스크린샷을 추가할 수 있습니다.",
|
||||
"performanceIssueDesciption": "이 성능 문제가 언제 발생합니까? 시작할 때 발생합니까? 특정 작업을 진행한 이후에 발생합니까? GitHub 버전의 Markdown을 지원합니다. GitHub에서 미리 볼 때 문제를 편집하고 스크린샷을 추가할 수 있습니다.",
|
||||
|
||||
@@ -2,12 +2,18 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"completeInEnglish": "양식을 영어로 작성해 주세요.",
|
||||
"issueTypeLabel": "이것은",
|
||||
"issueSourceLabel": "제출 대상",
|
||||
"vscode": "Visual Studio Code",
|
||||
"extension": "확장",
|
||||
"disableExtensionsLabelText": "{0} 후 문제를 재현해 보세요. 확장이 활성 상태인 경우에만 문제가 재현되면 확장과 관련된 문제일 수 있습니다.",
|
||||
"disableExtensions": "모든 확장을 사용하지 않도록 설정하고 창 다시 로드",
|
||||
"chooseExtension": "확장",
|
||||
"issueTitleLabel": "제목",
|
||||
"issueTitleRequired": "제목을 입력하세요.",
|
||||
"titleLengthValidation": "제목이 너무 깁니다.",
|
||||
@@ -18,13 +24,6 @@
|
||||
"extensions": "내 확장",
|
||||
"searchedExtensions": "검색된 확장",
|
||||
"settingsSearchDetails": "설정 검색 세부 정보",
|
||||
"tryDisablingExtensions": "확장을 사용하지 않도록 설정해도 문제 재현이 가능한가요?",
|
||||
"yes": "예",
|
||||
"no": "아니요",
|
||||
"disableExtensionsLabelText": "{0} 후 문제를 재현해 보세요.",
|
||||
"disableExtensions": "모든 확장을 사용하지 않도록 설정하고 창 다시 로드",
|
||||
"showRunningExtensionsLabelText": "확장 문제로 의심되면 {0}에서 확장에 대한 문제를 보고하세요.",
|
||||
"showRunningExtensions": "모든 실행 중인 확장 보기",
|
||||
"details": "상세 내용을 입력하세요.",
|
||||
"loadingData": "데이터 로드 중..."
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"cpu": "CPU %",
|
||||
"memory": "메모리(MB)",
|
||||
"pid": "pid",
|
||||
"name": "이름",
|
||||
"killProcess": "프로세스 종료",
|
||||
"forceKillProcess": "프로세스 강제 종료"
|
||||
}
|
||||
@@ -146,6 +146,7 @@
|
||||
"miConditionalBreakpoint": "조건부 중단점(&&C)...",
|
||||
"miColumnBreakpoint": "열 중단점(&&O)",
|
||||
"miFunctionBreakpoint": "함수 중단점(&&F)...",
|
||||
"miLogPoint": "Logpoint(&&L)...",
|
||||
"miNewBreakpoint": "새 중단점(&&N)",
|
||||
"miEnableAllBreakpoints": "모든 중단점 설정",
|
||||
"miDisableAllBreakpoints": "모든 중단점 사용 안 함(&&L)",
|
||||
@@ -161,6 +162,7 @@
|
||||
"mMergeAllWindows": "모든 창 병합",
|
||||
"miToggleDevTools": "개발자 도구 설정/해제(&&T)",
|
||||
"miAccessibilityOptions": "접근성 옵션(&&O)",
|
||||
"miOpenProcessExplorerer": "프로세스 탐색기 열기(&&P)",
|
||||
"miReportIssue": "문제 보고(&&I)",
|
||||
"miWelcome": "시작(&&W)",
|
||||
"miInteractivePlayground": "대화형 실습(&&I)",
|
||||
|
||||
@@ -7,7 +7,10 @@
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"label.close": "닫기",
|
||||
"header": "다른 항목 {0} / {1}: 원본 {2}, {3}행, 수정 {4}, {5}행",
|
||||
"no_lines": "줄 없음",
|
||||
"one_line": "1줄",
|
||||
"more_lines": "{0}줄",
|
||||
"header": "차이 {0}/{1}개: 원본 {2}, {3}, 수정 {4}, {5}",
|
||||
"blankLine": "비어 있음",
|
||||
"equalLine": "원본 {0}, 수정 {1}: {2}",
|
||||
"insertLine": "+ 수정됨 {0}: {1}",
|
||||
|
||||
10
i18n/kor/src/vs/editor/common/commonCodeEditor.i18n.json
Normal file
10
i18n/kor/src/vs/editor/common/commonCodeEditor.i18n.json
Normal file
@@ -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."
|
||||
],
|
||||
"cursors.maximum": "커서 수는 {0}(으)로 제한되었습니다."
|
||||
}
|
||||
@@ -16,7 +16,7 @@
|
||||
"lineNumbers.on": "줄 번호는 절대값으로 렌더링 됩니다.",
|
||||
"lineNumbers.relative": "줄 번호는 커서 위치에서 줄 간격 거리로 렌더링 됩니다.",
|
||||
"lineNumbers.interval": "줄 번호는 매 10 줄마다 렌더링이 이루어집니다.",
|
||||
"lineNumbers": "줄 번호의 표시 방식을 제어합니다. 가능한 값은 'on', 'off', 'relative', 'interval' 입니다.",
|
||||
"lineNumbers": "줄 번호 표시를 제어합니다.",
|
||||
"rulers": "특정 수의 고정 폭 문자 뒤에 세로 눈금자를 렌더링합니다. 여러 눈금자의 경우 여러 값을 사용합니다. 배열이 비어 있는 경우 눈금자가 그려져 있지 않습니다.",
|
||||
"wordSeparators": "단어 관련 탐색 또는 작업을 수행할 때 단어 구분 기호로 사용되는 문자입니다.",
|
||||
"tabSize": "탭 한 개에 해당하는 공백 수입니다. `editor.detectIndentation`이 켜져 있는 경우 이 설정은 파일 콘텐츠에 따라 재정의됩니다.",
|
||||
@@ -28,8 +28,8 @@
|
||||
"scrollBeyondLastLine": "편집기에서 마지막 줄 이후로 스크롤할지 여부를 제어합니다.",
|
||||
"smoothScrolling": "편집기에서 애니메이션을 사용하여 스크롤할지 여부를 제어합니다.",
|
||||
"minimap.enabled": "미니맵 표시 여부를 제어합니다.",
|
||||
"minimap.side": "미니맵이 표시될 곳을 결정합니다. '오른쪽'과 '왼쪽'이 선택 가능합니다.",
|
||||
"minimap.showSlider": "미니맵 슬라이더를 자동으로 숨길지 결정합니다. 가능한 값은 'always' 및 'mouseover'입니다.",
|
||||
"minimap.side": "미니맵을 렌더링할 측면을 제어합니다.",
|
||||
"minimap.showSlider": "미니맵 슬라이더를 자동으로 숨길지 결정합니다.",
|
||||
"minimap.renderCharacters": "줄의 실제 문자(색 블록 아님) 렌더링",
|
||||
"minimap.maxColumn": "최대 특정 수의 열을 렌더링하도록 미니맵의 너비를 제한합니다.",
|
||||
"find.seedSearchStringFromSelection": "편집기 선택에서 Find Widget의 검색 문자열을 시딩할지 설정합니다.",
|
||||
@@ -46,6 +46,7 @@
|
||||
"multiCursorModifier.ctrlCmd": "Windows와 Linux의 'Control'을 macOS의 'Command'로 매핑합니다.",
|
||||
"multiCursorModifier.alt": "Windows와 Linux의 'Alt'를 macOS의 'Option'으로 매핑합니다.",
|
||||
"multiCursorModifier": "마우스로 여러 커서를 추가할 때 사용할 수정자입니다. `ctrlCmd`는 Windows와 Linux에서 `Control`로 매핑되고 macOS에서 `Command`로 매핑됩니다. Go To Definition 및 Open Link 마우스 제스처가 멀티커서 수정자와 충돌하지 않도록 조정됩니다.",
|
||||
"multiCursorMergeOverlapping": "여러 커서가 겹치는 경우 커서를 병합합니다.",
|
||||
"quickSuggestions.strings": "문자열 내에서 빠른 제안을 사용합니다.",
|
||||
"quickSuggestions.comments": "주석 내에서 빠른 제안을 사용합니다.",
|
||||
"quickSuggestions.other": "문자열 및 주석 외부에서 빠른 제안을 사용합니다.",
|
||||
@@ -76,7 +77,7 @@
|
||||
"occurrencesHighlight": "편집기에서 의미 체계 기호 항목을 강조 표시할지 여부를 제어합니다.",
|
||||
"overviewRulerLanes": "개요 눈금자에서 동일한 위치에 표시될 수 있는 장식 수를 제어합니다.",
|
||||
"overviewRulerBorder": "개요 눈금자 주위에 테두리를 그릴지 여부를 제어합니다.",
|
||||
"cursorBlinking": "커서 애니메이션 스타일을 제어합니다. 가능한 값은 'blink', 'smooth', 'phase', 'expand' 및 'solid'입니다.",
|
||||
"cursorBlinking": "커서 애니메이션 스타일을 제어합니다.",
|
||||
"mouseWheelZoom": "마우스 휠을 사용할 때 Ctrl 키를 누르고 있으면 편집기의 글꼴 확대/축소",
|
||||
"cursorStyle": "커서 스타일을 제어합니다. 허용되는 값은 '블록', '블록-윤곽', '줄', '줄-가늘게', '밑줄' 및 '밑줄-가늘게'입니다.",
|
||||
"cursorWidth": "editor.cursorStyle 설정이 'line'으로 설정되어 있을 때 커서의 넓이를 조절합니다.",
|
||||
@@ -86,8 +87,11 @@
|
||||
"renderControlCharacters": "편집기에서 제어 문자를 렌더링할지를 제어합니다.",
|
||||
"renderIndentGuides": "편집기에서 들여쓰기 가이드를 렌더링할지를 제어합니다.",
|
||||
"renderLineHighlight": "편집기가 현재 줄 강조 표시를 렌더링하는 방식을 제어합니다. 가능한 값은 'none', 'gutter', 'line' 및 'all'입니다.",
|
||||
"codeLens": "편집기에서 코드 필터를 표시하는지 여부를 제어합니다.",
|
||||
"codeLens": "편집기에서 CodeLens를 표시하는지 여부를 제어합니다.",
|
||||
"folding": "편집기에서 코드 접기를 사용할지 여부를 제어합니다.",
|
||||
"foldingStrategyAuto": "사용 가능한 경우 언어 관련 접기 전략을 사용하고, 그렇지 않은 경우 들여쓰기 기반 전략으로 대체합니다.",
|
||||
"foldingStrategyIndentation": "항상 들여쓰기 기반 접기 전략 사용",
|
||||
"foldingStrategy": "접기 범위를 계산하는 방식을 제어합니다. '자동' 선택이면 사용 가능한 경우 언어 관련 접기 전략을 사용합니다. '들여쓰기'이면 들여쓰기 기반 접기 전략이 사용됩니다.",
|
||||
"showFoldingControls": "거터의 폴드 컨트롤을 자동으로 숨길지 결정합니다.",
|
||||
"matchBrackets": "대괄호 중 하나를 선택할 때 일치하는 대괄호를 강조 표시합니다.",
|
||||
"glyphMargin": "편집기에서 세로 문자 모양 여백을 렌더링할지 여부를 제어합니다. 문자 모양 여백은 주로 디버깅에 사용됩니다.",
|
||||
@@ -102,8 +106,12 @@
|
||||
"links": "편집기에서 링크를 감지하고 클릭할 수 있게 만들지 결정합니다.",
|
||||
"colorDecorators": "편집기에서 인라인 색 데코레이터 및 색 선택을 렌더링할지를 제어합니다.",
|
||||
"codeActions": "코드 동작 전구를 사용합니다.",
|
||||
"codeActionsOnSave.organizeImports": "저장할 때 가져오기 구성을 실행하시겠습니까?",
|
||||
"codeActionsOnSave": "저장할 때 실행되는 코드 동작 종류입니다.",
|
||||
"codeActionsOnSaveTimeout": "저장할 때 실행되는 코드 동작에 대한 시간 제한입니다.",
|
||||
"selectionClipboard": "Linux 주 클립보드의 지원 여부를 제어합니다.",
|
||||
"sideBySide": "diff 편집기에서 diff를 나란히 표시할지 인라인으로 표시할지 여부를 제어합니다.",
|
||||
"ignoreTrimWhitespace": "diff 편집기에서 선행 공백 또는 후행 공백 변경을 diffs로 표시할지 여부를 제어합니다.",
|
||||
"largeFileOptimizations": "큰 파일에 대한 특수 처리로, 메모리를 많이 사용하는 특정 기능을 사용하지 않도록 설정합니다.",
|
||||
"renderIndicators": "diff 편집기에서 추가/제거된 변경 내용에 대해 +/- 표시기를 표시하는지 여부를 제어합니다."
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
@@ -14,11 +14,13 @@
|
||||
"editorCursorBackground": "편집기 커서의 배경색입니다. 블록 커서와 겹치는 글자의 색상을 사용자 정의할 수 있습니다.",
|
||||
"editorWhitespaces": "편집기의 공백 문자 색입니다.",
|
||||
"editorIndentGuides": "편집기 들여쓰기 안내선 색입니다.",
|
||||
"editorActiveIndentGuide": "활성 편집기 들여쓰기 안내선 색입니다.",
|
||||
"editorLineNumbers": "편집기 줄 번호 색입니다.",
|
||||
"editorActiveLineNumber": "편집기 활성 영역 줄번호 색상",
|
||||
"deprecatedEditorActiveLineNumber": "Id는 사용 되지 않습니다. 대신 'editorLineNumber.activeForeground'를 사용 합니다.",
|
||||
"editorRuler": "편집기 눈금의 색상입니다.",
|
||||
"editorCodeLensForeground": "편집기 코드 렌즈의 전경색입니다.",
|
||||
"editorBracketMatchBackground": "일치하는 브래킷 뒤의 배경색입니다.",
|
||||
"editorBracketMatchBackground": "일치하는 괄호 뒤의 배경색",
|
||||
"editorBracketMatchBorder": "일치하는 브래킷 박스의 색상",
|
||||
"editorOverviewRulerBorder": "개요 눈금 경계의 색상입니다.",
|
||||
"editorGutter": "편집기 거터의 배경색입니다. 거터에는 글리프 여백과 행 수가 있습니다.",
|
||||
@@ -28,7 +30,9 @@
|
||||
"warningBorder": "편집기 내 경고 표시선의 테두리 색입니다.",
|
||||
"infoForeground": "편집기 내 정보 표시선의 전경색입니다.",
|
||||
"infoBorder": "편집기 내 정보 표시선의 테두리 색입니다.",
|
||||
"overviewRulerRangeHighlight": "범위 강조 표시의 개요 눈금자 마커 색입니다.",
|
||||
"hintForeground": "편집기에서 힌트 표시선의 전경색입니다.",
|
||||
"hintBorder": "편집기에서 힌트 표시선의 테두리 색입니다.",
|
||||
"overviewRulerRangeHighlight": "범위 강조의 개요 눈금자 표식 색입니다. 이 색은 불투명해야만 내부 장식을 가리지 않습니다.",
|
||||
"overviewRuleError": "오류의 개요 눈금자 마커 색입니다.",
|
||||
"overviewRuleWarning": "경고의 개요 눈금자 마커 색입니다.",
|
||||
"overviewRuleInfo": "정보의 개요 눈금자 마커 색입니다."
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"quickFixWithKb": "수정 사항 표시({0})",
|
||||
"quickFix": "수정 사항 표시",
|
||||
"quickfix.trigger.label": "빠른 수정...",
|
||||
"editor.action.quickFix.noneMessage": "사용 가능한 코드 동작이 없습니다.",
|
||||
"refactor.label": "리팩터링...",
|
||||
"editor.action.refactor.noneMessage": "사용 가능한 리펙터링이 없습니다.",
|
||||
"source.label": "소스 작업...",
|
||||
"editor.action.source.noneMessage": "사용 가능한 소스 작업이 없습니다.",
|
||||
"organizeImports.label": "가져오기 구성",
|
||||
"editor.action.organize.noneMessage": "사용 가능한 가져오기 구성 작업이 없습니다."
|
||||
}
|
||||
@@ -7,6 +7,7 @@
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"startFindAction": "찾기",
|
||||
"startFindWithSelectionAction": "선택 영역에서 찾기",
|
||||
"findNextMatchAction": "다음 찾기",
|
||||
"findPreviousMatchAction": "이전 찾기",
|
||||
"nextSelectionMatchFindAction": "다음 선택 찾기",
|
||||
|
||||
@@ -12,5 +12,7 @@
|
||||
"hintnn": "줄 {1}과(와) {2} 사이에서 {0}개 서식 편집을 수행했습니다.",
|
||||
"no.provider": " '{0}'-파일에 대한 설치된 형식기가 없습니다.",
|
||||
"formatDocument.label": "문서 서식",
|
||||
"formatSelection.label": "선택 영역 서식"
|
||||
"no.documentprovider": " '{0}'-파일에 대한 문서 포맷터가 설치되어 있지 않습니다.",
|
||||
"formatSelection.label": "선택 영역 서식",
|
||||
"no.selectionprovider": "'{0}'-파일에 대한 선택 영역 포맷터가 설치되어 있지 않습니다."
|
||||
}
|
||||
@@ -6,11 +6,6 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"title.wo_source": "({0}/{1})",
|
||||
"markerAction.next.label": "다음 문제로 이동 (오류, 경고, 정보)",
|
||||
"markerAction.previous.label": "이전 문제로 이동 (오류, 경고, 정보)",
|
||||
"editorMarkerNavigationError": "편집기 표식 탐색 위젯 오류 색입니다.",
|
||||
"editorMarkerNavigationWarning": "편집기 표식 탐색 위젯 경고 색입니다.",
|
||||
"editorMarkerNavigationInfo": "편집기 표식 탐색 위젯 정보 색입니다.",
|
||||
"editorMarkerNavigationBackground": "편집기 표식 탐색 위젯 배경입니다."
|
||||
"markerAction.previous.label": "이전 문제로 이동 (오류, 경고, 정보)"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"title.wo_source": "({0}/{1})",
|
||||
"editorMarkerNavigationError": "편집기 표식 탐색 위젯 오류 색입니다.",
|
||||
"editorMarkerNavigationWarning": "편집기 표식 탐색 위젯 경고 색입니다.",
|
||||
"editorMarkerNavigationInfo": "편집기 표식 탐색 위젯 정보 색입니다.",
|
||||
"editorMarkerNavigationBackground": "편집기 표식 탐색 위젯 배경입니다."
|
||||
}
|
||||
@@ -10,7 +10,9 @@
|
||||
"links.navigate": "Ctrl 키를 누르고 클릭하여 링크로 이동",
|
||||
"links.command.mac": "명령을 실행하려면 Cmd+클릭",
|
||||
"links.command": "명령을 실행하려면 Ctrl+클릭",
|
||||
"links.navigate.al.mac": "<Option> 키를 누르고 클릭하여 링크로 이동",
|
||||
"links.navigate.al": "Alt 키를 누르고 클릭하여 링크로 이동",
|
||||
"links.command.al.mac": "<Option> 키를 누르고 클릭하여 명령 실행",
|
||||
"links.command.al": "명령을 실행하려면 Alt+클릭",
|
||||
"invalid.url": "{0} 형식이 올바르지 않으므로 이 링크를 열지 못했습니다",
|
||||
"missing.url": "대상이 없으므로 이 링크를 열지 못했습니다.",
|
||||
|
||||
@@ -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."
|
||||
],
|
||||
"editor.readonly": "읽기 전용 편집기에서 편집할 수 없습니다."
|
||||
}
|
||||
@@ -25,5 +25,6 @@
|
||||
"peekViewEditorBackground": "Peek 뷰 편집기의 배경색입니다.",
|
||||
"peekViewEditorGutterBackground": "Peek 뷰 편집기의 거터 배경색입니다.",
|
||||
"peekViewResultsMatchHighlight": "Peek 뷰 결과 목록의 일치 항목 강조 표시 색입니다.",
|
||||
"peekViewEditorMatchHighlight": "Peek 뷰 편집기의 일치 항목 강조 표시 색입니다."
|
||||
"peekViewEditorMatchHighlight": "Peek 뷰 편집기의 일치 항목 강조 표시 색입니다.",
|
||||
"peekViewEditorMatchHighlightBorder": "Peek 뷰 편집기의 일치 항목 강조 표시 테두리입니다."
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"Sunday": "일요일",
|
||||
"Monday": "월요일",
|
||||
"Tuesday": "화요일",
|
||||
"Wednesday": "수요일",
|
||||
"Thursday": "목요일",
|
||||
"Friday": "금요일",
|
||||
"Saturday": "토요일",
|
||||
"SundayShort": "일",
|
||||
"MondayShort": "월",
|
||||
"TuesdayShort": "화",
|
||||
"WednesdayShort": "수",
|
||||
"ThursdayShort": "목",
|
||||
"FridayShort": "금",
|
||||
"SaturdayShort": "토",
|
||||
"January": "1 월",
|
||||
"February": "2 월",
|
||||
"March": "3 월",
|
||||
"April": "4 월",
|
||||
"May": "5 월",
|
||||
"June": "6 월",
|
||||
"July": "7 월",
|
||||
"August": "8 월",
|
||||
"September": "9 월",
|
||||
"October": "10 월",
|
||||
"November": "11 월",
|
||||
"December": "12 월",
|
||||
"JanuaryShort": "1 월",
|
||||
"FebruaryShort": "2 월",
|
||||
"MarchShort": "3 월",
|
||||
"AprilShort": "4 월",
|
||||
"MayShort": "5 월",
|
||||
"JuneShort": "6 월",
|
||||
"JulyShort": "7 월",
|
||||
"AugustShort": "8 월",
|
||||
"SeptemberShort": "9 월",
|
||||
"OctoberShort": "10 월",
|
||||
"NovemberShort": "11 월",
|
||||
"DecemberShort": "12 월"
|
||||
}
|
||||
@@ -10,8 +10,8 @@
|
||||
"wordHighlightStrong": "변수에 쓰기와 같은 쓰기 액세스 중 기호의 배경색입니다. 색상은 밑에 깔린 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"wordHighlightBorder": "변수 읽기와 같은 읽기 액세스 중 기호의 테두리 색입니다.",
|
||||
"wordHighlightStrongBorder": "변수에 쓰기와 같은 쓰기 액세스 중 기호의 테두리 색입니다.",
|
||||
"overviewRulerWordHighlightForeground": "기호 강조 표시의 개요 눈금자 마커 색입니다.",
|
||||
"overviewRulerWordHighlightStrongForeground": "쓰기 권한 기호 강조 표시의 개요 눈금자 마커 색입니다.",
|
||||
"overviewRulerWordHighlightForeground": "기호 강조의 개요 눈금자 표식 색입니다. 이 색은 불투명해야만 내부 장식을 가리지 않습니다.",
|
||||
"overviewRulerWordHighlightStrongForeground": "쓰기 액세스 기호 강조의 개요 눈금자 표식 색입니다. 이 색은 불투명해야만 내부 장식을 가리지 않습니다.",
|
||||
"wordHighlight.next.label": "다음 강조 기호로 이동",
|
||||
"wordHighlight.previous.label": "이전 강조 기호로 이동"
|
||||
}
|
||||
11
i18n/kor/src/vs/platform/dialogs/common/dialogs.i18n.json
Normal file
11
i18n/kor/src/vs/platform/dialogs/common/dialogs.i18n.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"moreFile": "...1개의 추가 파일이 표시되지 않음",
|
||||
"moreFiles": "...{0}개의 추가 파일이 표시되지 않음"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"cancel": "취소"
|
||||
}
|
||||
@@ -29,8 +29,8 @@
|
||||
"performance": "'Developer: Startup Performance' 명령을 사용하여 시작합니다.",
|
||||
"prof-startup": "시작하는 동안 CPU 프로파일러 실행",
|
||||
"disableExtensions": "설치된 모든 확장을 사용하지 않도록 설정합니다.",
|
||||
"inspect-extensions": "디버깅 및 확장 프로파일링을 허용합니다. 연결 uri에 대한 개발자 도구를 확인하십시오.",
|
||||
"inspect-brk-extensions": "시작 후 일시 중시된 확장 호스트에서 디버깅 및 확장 프로파일링을 허용합니다. 연결 URL은 개발자 도구를 확인하세요.",
|
||||
"inspect-extensions": "디버깅 및 확장 프로파일링을 허용합니다. 연결 URI는 개발자 도구를 확인하세요.",
|
||||
"inspect-brk-extensions": "시작 후 일시 중시된 확장 호스트에서 디버깅 및 확장 프로파일링을 허용합니다. 연결 URI는 개발자 도구를 확인하세요.",
|
||||
"disableGPU": "GPU 하드웨어 가속을 사용하지 않도록 설정합니다.",
|
||||
"uploadLogs": "현재의 세션에서 안전한 종점으로 로그 업로드",
|
||||
"maxMemory": "윈도우에 대한 최대 메모리 크기 (단위 MB).",
|
||||
|
||||
@@ -2,11 +2,12 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"invalidManifest": "잘못된 확장: package.json이 JSON 파일이 아닙니다.",
|
||||
"incompatible": "'{0}' 확장은 Code '{1}'과(와) 호환되지 않으므로 설치할 수 없습니다.",
|
||||
"restartCode": "{0}을(를) 다시 설치하기 전에 Code를 다시 시작하세요.",
|
||||
"installingOutdatedExtension": "이 확장의 최신 버전이 이미 설치되어 있습니다. 이 버전을 이전 버전으로 재정의하시겠습니까?",
|
||||
"override": "재정의",
|
||||
@@ -14,15 +15,16 @@
|
||||
"errorInstallingDependencies": "의존성 설치 중 오류가 발생했습니다. {0}",
|
||||
"MarketPlaceDisabled": "Marketplace를 사용할 수 없습니다.",
|
||||
"removeError": "확장을 제거하는 동안 오류가 발생했습니다. {0}. 다시 시도하기 전에 VS Code를 종료하고 다시 시작하세요.",
|
||||
"Not Market place extension": "마켓플레이스 확장만 다시 설치할 수 있습니다.",
|
||||
"Not a Marketplace extension": "마켓플레이스 확장만 다시 설치할 수 있습니다.",
|
||||
"notFoundCompatible": "'{0}'을(를) 설치할 수 없습니다; VS Code '{1}'과 호환되는 버전이 없습니다.",
|
||||
"malicious extension": "문제가 있다고 보고되었으므로 확장을 설치할 수 없습니다.",
|
||||
"notFoundCompatibleDependency": "VS Code의 현재 버전 '{1}'과(와) 호환되는 종속된 확장 '{0}'을(를) 찾을 수 없으므로 설치할 수 없습니다.",
|
||||
"quitCode": "확장을 설치할 수 없습니다. 다시 설치하기 위해 VS Code를 종료하고 다시 시작하십시오.",
|
||||
"exitCode": "확장을 설치할 수 없습니다. 다시 설치하기 전에 VS 코드를 종료한 후 다시 시작하십시오. ",
|
||||
"renameError": "이름을 {0}에서 {1}(으)로 변경하는 중 알 수 없는 오류 발생",
|
||||
"uninstallDependeciesConfirmation": "'{0}'만 제거할까요, 아니면 종속성도 제거할까요?",
|
||||
"uninstallOnly": "만",
|
||||
"uninstallAll": "모두",
|
||||
"uninstallOnly": "확장만",
|
||||
"uninstallAll": "모두 제거",
|
||||
"uninstallConfirmation": "'{0}'을(를) 제거할까요?",
|
||||
"ok": "확인",
|
||||
"singleDependentError": "확장 '{0}'을(를) 제거할 수 없습니다. 확장 '{1}'이(가) 이 확장에 종속됩니다.",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"versionSyntax": "`engines.vscode` 값 {0}을(를) 구문 분석할 수 없습니다. ^0.10.0, ^1.2.3, ^0.11.0, ^0.10.x 등을 사용하세요.",
|
||||
"versionSyntax": "`engines.vscode` 값 {0}을(를) 구문 분석할 수 없습니다. ^1.22.0, ^1.22.x 등을 사용하세요.",
|
||||
"versionSpecificity1": "`engines.vscode`({0})에 지정된 버전이 명확하지 않습니다. vscode 버전이 1.0.0 이전이면 최소한 원하는 주 버전과 부 버전을 정의하세요( 예: ^0.10.0, 0.10.x, 0.11.0 등).",
|
||||
"versionSpecificity2": "`engines.vscode`({0})에 지정된 버전이 명확하지 않습니다. vscode 버전이 1.0.0 이후이면 최소한 원하는 주 버전을 정의하세요(예: ^1.10.0, 1.10.x, 1.x.x, 2.x.x 등).",
|
||||
"versionMismatch": "확장이 Code {0}과(와) 호환되지 않습니다. 확장에 {1}이(가) 필요합니다."
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"integrity.prompt": "{0} 설치가 손상된 것 같습니다. 다시 설치하세요.",
|
||||
"integrity.moreInformation": "추가 정보",
|
||||
"integrity.dontShowAgain": "다시 표시 안 함",
|
||||
"integrity.prompt": "{0} 설치가 손상된 것 같습니다. 다시 설치하세요."
|
||||
"integrity.dontShowAgain": "다시 표시 안 함"
|
||||
}
|
||||
@@ -6,5 +6,6 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"issueReporter": "문제 보고자"
|
||||
"issueReporter": "문제 보고자",
|
||||
"processExplorer": "프로세스 탐색기"
|
||||
}
|
||||
@@ -12,5 +12,6 @@
|
||||
"multiSelectModifier": "마우스로 트리와 목록의 항목을 다중 선택에 추가할 때 사용할 한정자입니다(예를 들어 탐색기에서 편집기와 SCM 보기를 여는 경우). `ctrlCmd`는 Windows와 Linux에서 `Control`로 매핑되고 macOS에서 `Command`로 매핑됩니다. '옆에서 열기' 마우스 제스처(지원되는 경우)는 다중 선택 한정자와 충돌하지 않도록 조정됩니다.",
|
||||
"openMode.singleClick": "마우스를 한 번 클릭하여 항목을 엽니다.",
|
||||
"openMode.doubleClick": "마우스를 두 번 클릭하여 항목을 엽니다.",
|
||||
"openModeModifier": "트리와 목록에서 마우스를 사용하여 항목을 여는 방법을 제어합니다(지원되는 경우). 마우스을 한 번 클릭하여 항목을 열려면 `singleClick` 으로 설정하고 마우스 두 번 클릭을 통해서만 열려면 `doubleClick`으로 설정합니다. 트리에서 하위 항목이 있는 상위 항목의 경우 이 설정은 상위 항목을 한 번 클릭으로 확장할지 두 번 클릭으로 확장할지를 제어합니다. 일부 트리와 목록에서는 이 설정을 적용할 수 없는 경우 무시하도록 선택할 수 있습니다. "
|
||||
"openModeModifier": "트리와 목록에서 마우스를 사용하여 항목을 여는 방법을 제어합니다(지원되는 경우). 마우스을 한 번 클릭하여 항목을 열려면 `singleClick` 으로 설정하고 마우스 두 번 클릭을 통해서만 열려면 `doubleClick`으로 설정합니다. 트리에서 하위 항목이 있는 상위 항목의 경우 이 설정은 상위 항목을 한 번 클릭으로 확장할지 두 번 클릭으로 확장할지를 제어합니다. 일부 트리와 목록에서는 이 설정을 적용할 수 없는 경우 무시하도록 선택할 수 있습니다. ",
|
||||
"horizontalScrolling setting": "워크벤치에서 수평 스크롤 지원 여부를 제어 합니다."
|
||||
}
|
||||
12
i18n/kor/src/vs/platform/markers/common/markers.i18n.json
Normal file
12
i18n/kor/src/vs/platform/markers/common/markers.i18n.json
Normal file
@@ -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."
|
||||
],
|
||||
"sev.error": "오류",
|
||||
"sev.warning": "경고",
|
||||
"sev.info": "정보"
|
||||
}
|
||||
@@ -29,7 +29,7 @@
|
||||
"inputPlaceholderForeground": "위치 표시자 텍스트에 대한 입력 상자 전경색입니다.",
|
||||
"inputValidationInfoBackground": "정보 심각도의 입력 유효성 검사 배경색입니다.",
|
||||
"inputValidationInfoBorder": "정보 심각도의 입력 유효성 검사 테두리 색입니다.",
|
||||
"inputValidationWarningBackground": "정보 경고의 입력 유효성 검사 배경색입니다.",
|
||||
"inputValidationWarningBackground": "경고 심각도의 입력 유효성 검사 배경색입니다.",
|
||||
"inputValidationWarningBorder": "경고 심각도의 입력 유효성 검사 테두리 색입니다.",
|
||||
"inputValidationErrorBackground": "오류 심각도의 입력 유효성 검사 배경색입니다.",
|
||||
"inputValidationErrorBorder": "오류 심각도의 입력 유효성 검사 테두리 색입니다.",
|
||||
@@ -71,10 +71,10 @@
|
||||
"editorSelectionHighlightBorder": "선택 영역과 동일한 콘텐츠가 있는 영역의 테두리 색입니다.",
|
||||
"editorFindMatch": "현재 검색 일치 항목의 색입니다.",
|
||||
"findMatchHighlight": "기타 일치하는 검색의 색상. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"findRangeHighlight": "범위 제한 검색의 색상. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"findRangeHighlight": "검색을 제한하는 범위의 색입니다. 이 색은 기본 장식을 가리지 않도록 불투명하지 않아야 합니다.",
|
||||
"editorFindMatchBorder": "현재 검색과 일치하는 테두리 색입니다.",
|
||||
"findMatchHighlightBorder": "다른 검색과 일치하는 테두리 색입니다.",
|
||||
"findRangeHighlightBorder": "범위 제한 검색의 테두리 색. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"findRangeHighlightBorder": "검색을 제한하는 범위의 테두리 색입니다. 이 색은 기본 장식을 가리지 않도록 불투명하지 않아야 합니다.",
|
||||
"hoverHighlight": "호버가 표시된 단어 아래를 강조 표시합니다. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"hoverBackground": "편집기 호버의 배경색.",
|
||||
"hoverBorder": "편집기 호버의 테두리 색입니다.",
|
||||
@@ -88,11 +88,11 @@
|
||||
"mergeIncomingHeaderBackground": "인라인 병합 충돌에서 수신 헤더 배경입니다. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"mergeIncomingContentBackground": "인라인 병합 충돌에서 수신 콘텐츠 배경입니다. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"mergeCommonHeaderBackground": "인라인 병합 충돌의 공통 과거 헤더 배경입니다. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"mergeCommonContentBackground": "인라인 병합 충돌의 공통 과거 콘텐츠 배경입니다. 색상은 밑의 꾸밈을 가리지 않도록 반드시 불투명이 아니어야 합니다.",
|
||||
"mergeCommonContentBackground": "인라인 병합 충돌의 공용 상위 콘텐츠 배경입니다. 이 색은 기본 장식을 가리지 않도록 불투명하지 않아야 합니다.",
|
||||
"mergeBorder": "인라인 병합 충돌에서 헤더 및 스플리터의 테두리 색입니다.",
|
||||
"overviewRulerCurrentContentForeground": "인라인 병합 충돌에서 현재 개요 눈금 전경색입니다.",
|
||||
"overviewRulerIncomingContentForeground": "인라인 병합 충돌에서 수신 개요 눈금 전경색입니다.",
|
||||
"overviewRulerCommonContentForeground": "인라인 병합 충돌에서 공통 과거 개요 눈금 전경색입니다.",
|
||||
"overviewRulerFindMatchForeground": "찾기 일치 항목의 개요 눈금자 마커 색입니다.",
|
||||
"overviewRulerSelectionHighlightForeground": "선택 영역 강조 표시의 개요 눈금자 마커 색입니다."
|
||||
"overviewRulerFindMatchForeground": "일치하는 항목 찾기의 개요 눈금자 표식 색입니다. 이 색은 불투명해야만 내부 장식을 가리지 않습니다.",
|
||||
"overviewRulerSelectionHighlightForeground": "선택 영역 강조의 개요 눈금자 표식 색입니다. 이 색은 불투명해야만 내부 장식을 가리지 않습니다."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"confirmUrl": "{0} 확장에서 다음 URL을 열도록 허용하시겠습니까?"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"vscode.extension.contributes.views.containers.id": "'뷰' 기여 지점을 사용하여 뷰가 기여될 수 있는 컨테이너를 식별하는 데 사용되는 고유한 ID",
|
||||
"vscode.extension.contributes.views.containers.title": "컨테이너를 렌더링하는 데 사용되는 사람이 읽을 수 있는 문자열",
|
||||
"vscode.extension.contributes.views.containers.icon": "컨테이너 아이콘의 경로입니다. 아이콘은 50x40 사각형의 가운데에 있는 24x24 크기이며 채우기 색은 'rgb(215, 218, 224)' 또는 '#d7dae0'입니다. 아이콘의 이미지 파일 형식은 무엇이든 상관없지만 SVG를 사용하는 것이 좋습니다.",
|
||||
"vscode.extension.contributes.viewsContainers": "뷰 컨테이너를 편집기에 기여합니다.",
|
||||
"views.container.activitybar": "뷰 컨테이너를 작업 막대에 기여",
|
||||
"test": "테스트",
|
||||
"proposed": "'viewsContainers' 기여는 dev 외부에서 실행하거나 명령줄 스위치 --enable-proposed-api {0}을(를) 사용하여 실행할 때만 사용할 수 있습니다.",
|
||||
"requirearray": "뷰 컨테이너는 배열이어야 합니다.",
|
||||
"requireidstring": "`{0}` 속성은 필수이며 `string` 형식이어야 합니다. 영숫자, '_', '-'만 사용할 수 있습니다.",
|
||||
"requirestring": "속성 `{0}`은(는) 필수이며 `string` 형식이어야 합니다.",
|
||||
"showViewlet": "{0} 표시",
|
||||
"view": "보기"
|
||||
}
|
||||
@@ -13,9 +13,12 @@
|
||||
"vscode.extension.contributes.view.name": "사용자가 읽을 수 있는 뷰 이름입니다. 표시됩니다.",
|
||||
"vscode.extension.contributes.view.when": "이 보기를 표시하기 위해 true여야 하는 조건입니다.",
|
||||
"vscode.extension.contributes.views": "뷰를 에디터에 적용합니다.",
|
||||
"views.explorer": "탐색기 뷰",
|
||||
"views.debug": "디버그 보기",
|
||||
"locationId.invalid": "`{0}`은(는) 유효한 뷰 위치가 아닙니다.",
|
||||
"views.explorer": "뷰를 작업 막대의 탐색기 컨테이너에 기여합니다.",
|
||||
"views.debug": "뷰를 작업 막대의 디버그 컨테이너에 기여합니다.",
|
||||
"views.scm": "뷰를 작업 막대의 SCM 컨테이너에 적용합니다.",
|
||||
"views.test": "뷰를 작업 막대의 테스트 컨테이너에 적용합니다.",
|
||||
"views.contributed": "뷰를 기여된 뷰 컨테이너에 기여합니다.",
|
||||
"ViewContainerDoesnotExist": "뷰 컨테이너 '{0}'이(가) 없으므로 이 컨테이너에 등록된 모든 뷰가 '탐색기'에 추가됩니다.",
|
||||
"duplicateView1": "위치 '{1}'에서 동일한 ID '{0}'(으)로된 여러 개의 보기를 등록할 수 없습니다.",
|
||||
"duplicateView2": "ID `{0}`이(가) 포함된 뷰가 위치 `{1}`에 이미 등록되어 있습니다."
|
||||
}
|
||||
@@ -6,5 +6,8 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"timeout.formatOnSave": "저장 시 {0}ms 후에 서식 지정이 중단됨",
|
||||
"codeActionsOnSave.didTimeout": "{0}밀리초 후 codeActionsOnSave 중단됨",
|
||||
"timeout.onWillSave": "1750ms 후에 onWillSaveTextDocument-event가 중단됨",
|
||||
"saveParticipants": "실행중인 저장 관계자..."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"task.label": "{0}: {1}"
|
||||
}
|
||||
@@ -2,9 +2,9 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"webview.editor.label": "webview 편집기"
|
||||
"errorMessage": "뷰를 복원하는 중 오류 발생:{0}"
|
||||
}
|
||||
10
i18n/kor/src/vs/workbench/api/node/extHostProgress.i18n.json
Normal file
10
i18n/kor/src/vs/workbench/api/node/extHostProgress.i18n.json
Normal file
@@ -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."
|
||||
],
|
||||
"extensionSource": "{0} (확장)"
|
||||
}
|
||||
@@ -17,6 +17,7 @@
|
||||
"focusNextGroup": "다음 그룹에 포커스",
|
||||
"openToSide": "측면에서 열기",
|
||||
"closeEditor": "편집기 닫기",
|
||||
"closeOneEditor": "닫기",
|
||||
"revertAndCloseActiveEditor": "편집기 되돌리기 및 닫기",
|
||||
"closeEditorsToTheLeft": "왼쪽에 있는 편집기 닫기",
|
||||
"closeAllEditors": "모든 편집기 닫기",
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
"screenReaderDetectedExtra": "화면 읽기 프로그램을 사용하지 않는 경우 `editor.accessibilitySupport` 설정을 \"off\"로 변경하세요.",
|
||||
"disableTabMode": "접근성 모드 사용 안 함",
|
||||
"gotoLine": "줄 이동",
|
||||
"indentation": "들여쓰기",
|
||||
"selectIndentation": "들여쓰기 선택",
|
||||
"selectEncoding": "인코딩 선택",
|
||||
"selectEOL": "줄 시퀀스의 끝 선택",
|
||||
"selectLanguageMode": "언어 모드 선택",
|
||||
|
||||
@@ -11,9 +11,11 @@
|
||||
"sizeMB": "{0}MB",
|
||||
"sizeGB": "{0}GB",
|
||||
"sizeTB": "{0}TB",
|
||||
"largeImageError": "이미지의 파일 크기가 너무 커서(>1MB) 편집기에서 표시할 수 없습니다. ",
|
||||
"largeImageError": "이미지가 너무 커서 편집기에 표시할 수 없습니다({0}). ",
|
||||
"resourceOpenExternalButton": " 외부 프로그램으로 이미지를 열까요?",
|
||||
"nativeBinaryError": "파일이 이진이거나 매우 크거나 지원되지 않는 텍스트 인코딩을 사용하기 때문에 편집기에서 표시되지 않습니다.",
|
||||
"nativeFileTooLargeError": "파일이 너무 커서 편집기에서 표시되지 않습니다({0}).",
|
||||
"nativeBinaryError": "파일이 이진이거나 지원되지 않는 텍스트 인코딩을 사용하기 때문에 편집기에서 표시되지 않습니다.",
|
||||
"openAsText": "그래도 여시겠습니까?",
|
||||
"zoom.action.fit.label": "전체 이미지",
|
||||
"imgMeta": "{0}x{1} {2}"
|
||||
}
|
||||
@@ -6,6 +6,5 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"close": "닫기",
|
||||
"araLabelEditorActions": "편집기 작업"
|
||||
}
|
||||
@@ -2,10 +2,11 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"notificationsEmpty": "새 알림 없음",
|
||||
"notifications": "알림",
|
||||
"notificationsToolbar": "알림 센터 작업",
|
||||
"notificationsList": "알림 목록"
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"inputModeEntryDescription": "{0}(확인하려면 'Enter' 키를 누르고, 취소하려면 'Escape' 키를 누름)",
|
||||
"inputModeEntry": "입력을 확인하려면 'Enter' 키를 누르고, 취소하려면 'Esc' 키를 누르세요.",
|
||||
"quickInput.countSelected": "{0} 선택됨",
|
||||
"ok": "확인"
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"quickInputBox.ariaLabel": "결과의 범위를 축소하려면 입력하세요."
|
||||
}
|
||||
@@ -32,6 +32,7 @@
|
||||
"openRecent": "최근 항목 열기...",
|
||||
"quickOpenRecent": "빠른 최근 항목 열기...",
|
||||
"reportIssueInEnglish": "문제 보고",
|
||||
"openProcessExplorer": "프로세스 탐색기 열기",
|
||||
"reportPerformanceIssue": "성능 문제 보고",
|
||||
"keybindingsReference": "바로 가기 키 참조",
|
||||
"openDocumentationUrl": "설명서",
|
||||
|
||||
@@ -45,12 +45,17 @@
|
||||
"windowConfigurationTitle": "창",
|
||||
"window.openFilesInNewWindow.on": "파일이 새 창에서 열립니다.",
|
||||
"window.openFilesInNewWindow.off": "파일이 파일의 폴더가 열려 있는 창 또는 마지막 활성 창에서 열립니다.",
|
||||
"window.openFilesInNewWindow.default": "Dock 또는 Finder(macOS 전용)를 통해 파일을 연 경우를 제외하고 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.",
|
||||
"openFilesInNewWindow": "파일을 새 창에서 열지 여부를 제어합니다.\n- default: Dock 또는 Finder(macOS 전용)를 통해 파일을 연 경우를 제외하고, 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.\n- on: 파일이 새 창에서 열립니다.\n- off: 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.\n이 설정이 무시되는 경우도 있을 수 있습니다(예: -new-window 또는 -reuse-window 명령줄 옵션을 사용할 경우).",
|
||||
"window.openFilesInNewWindow.defaultMac": "Dock 또는 Finder를 통해 파일을 연 경우를 제외하고 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.",
|
||||
"window.openFilesInNewWindow.default": "응용 프로그램 내에서 선택(예: 파일 메뉴를 통해)하는 경우를 제외하고 파일이 새 창에서 열립니다. ",
|
||||
"openFilesInNewWindowMac": "파일을 새 창에서 열지 여부를 제어합니다.\n- default: Dock 또는 Finder를 통해 파일을 연 경우를 제외하고, 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.\n- on: 파일이 새 창에서 열립니다.\n- off: 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.\n이 설정이 무시되는 경우도 있을 수 있습니다(예: -new-window 또는 reuse-window 명령줄 옵션을 사용할 경우).",
|
||||
"openFilesInNewWindow": "파일을 새 창에서 열지 여부를 제어합니다.\n- default: 응용 프로그램 내에서 [파일] 메뉴 등을 통해 파일을 선택하는 경우를 제외하고, 파일이 새 창에서 열립니다.\n- on: 파일이 새 창에서 열립니다.\n- off: 파일이 파일의 폴더가 열린 창 또는 마지막 활성 창에서 열립니다.\n이 설정이 무시되는 경우도 있을 수 있습니다(예: -new-window 또는 reuse-window 명령줄 옵션을 사용할 경우).",
|
||||
"window.openFoldersInNewWindow.on": "폴더가 새 창에서 열립니다.",
|
||||
"window.openFoldersInNewWindow.off": "폴더가 마지막 활성 창을 바꿉니다.",
|
||||
"window.openFoldersInNewWindow.default": "폴더를 응용 프로그램 내에서 선택(예: 파일 메뉴를 통해)하는 경우를 제외하고 폴더가 새 창에서 열립니다.",
|
||||
"openFoldersInNewWindow": "폴더를 새 창에서 열지, 마지막 활성 창과 바꿀지를 제어합니다.\n- default: 응용 프로그램 내에서 [파일] 메뉴 등을 통해 폴더를 선택하는 경우를 제외하고, 폴더는 새 창에서 열립니다.\n- on: 폴더가 새 창에서 열립니다.\n- off: 폴더가 마지막 활성 창을 대체합니다\n이 설정이 무시되는 경우도 있을 수 있습니다(예: -new-window 또는 -reuse-window 명령줄 옵션을 사용할 경우).",
|
||||
"window.openWithoutArgumentsInNewWindow.on": "새로운 빈 창 열기",
|
||||
"window.openWithoutArgumentsInNewWindow.off": "실행 중인 마지막 활성 인스턴스에 포커스",
|
||||
"openWithoutArgumentsInNewWindow": "인수 없이 두 번째 인스턴스를 시작할 때 새로운 빈 창을 열지 또는 실행 중인 마지막 인스턴스에 포커스가 생길지 여부를 제어합니다.\n- on: 새로운 빈 창을 엽니다.\n- off: 실행 중인 마지막 활성 인스턴스에 포커스가 생깁니다.\n이 설정이 무시되는 경우도 있을 수 있습니다(예: -new-window 또는 -reuse-window 명령줄 옵션을 사용할 경우).",
|
||||
"window.reopenFolders.all": "모든 창을 다시 엽니다.",
|
||||
"window.reopenFolders.folders": "모든 폴더를 다시 엽니다. 빈 작업 영역은 복원되지 않습니다.",
|
||||
"window.reopenFolders.one": "마지막 활성 창을 다시 엽니다.",
|
||||
@@ -58,7 +63,7 @@
|
||||
"restoreWindows": "다시 시작한 이후에 창을 다시 여는 방법을 설정합니다. 'none'을 선택하면 항상 빈 작업 영역으로 시작하고 'one'을 선택하면 마지막으로 작업한 창이 다시 열리고 'folders'를 선택하면 열었던 폴더가 포함된 모든 창이 다시 열리며 'all'을 선택하면 지난 세션의 모든 창이 다시 열립니다.",
|
||||
"restoreFullscreen": "창이 전체 화면 모드에서 종료된 경우 창을 전체 화면 모드로 복원할지 여부를 제어합니다.",
|
||||
"zoomLevel": "창의 확대/축소 수준을 조정합니다. 원래 크기는 0이고 각 상한 증분(예: 1) 또는 하한 증분(예: -1)은 20% 더 크거나 더 작게 확대/축소하는 것을 나타냅니다. 10진수를 입력하여 확대/축소 수준을 세부적으로 조정할 수도 있습니다.",
|
||||
"title": "활성 편집기를 기반으로 창 제목을 제어합니다. 변수는 컨텍스트를 기반으로 대체됩니다.\n${activeEditorShort}: 파일 이름(예: myFile.txt)\n${activeEditorMedium}: 작업 영역 폴더에 상대적인 파일 경로(예: myFolder/myFile.txt)\n${activeEditorLong}: 파일 전체 경로(예: /Users/Development/myProject/myFolder/myFile.txt)\n${folderName}: 파일이 포함된 작업 영역 폴더 이름(예: myFolder)\n${folderPath}: 파일이 포함된 작업 영역 폴더의 파일 경로(예: /Users/Development/myFolder)\n${rootName}: 작업 영역 이름(예: myFolder 또는 myWorkspace)\n${rootPath}: 작업 영역 파일 경로(예: /Users/Development/myWorkspace)\n${appName}: 예: VS Code\n${dirty}: 활성 편집기가 더티인 경우 더티 표시기\n${separator}: 값이 있는 변수로 둘러싸인 경우에만 표시되는 조건부 구분 기호(\" - \")",
|
||||
"title": "활성 편집기를 기반으로 창 제목을 제어합니다. 변수는 컨텍스트를 기준으로 대체됩니다.\n${activeEditorShort}: 파일 이름(예: myFile.txt)\n${activeEditorMedium}: 작업 영역 폴더를 기준으로 하는 파일에 대한 상대 경로(예: myFolder/myFile.txt)\n${activeEditorLong}: 파일의 전체 경로(예: /Users/Development/myProject/myFolder/myFile.txt)\n${folderName}: 파일이 포함된 작업 영역 폴더의 이름(예: myFolder)\n${folderPath}: 파일이 포함된 작업 영역 폴더의 파일 경로(예: /Users/Development/myFolder)\n${rootName}: 작업 영역의 이름(예: myFolder or myWorkspace)\n${rootPath}: 작업 영역의 파일 경로(예: /Users/Development/myWorkspace)\n${appName}: 예: VS Code\n${dirty}: 활성 편집기가 더티인 경우 더티 표시기\n${separator}: 값 또는 정적 텍스트가 있는 변수로 둘러싸인 경우에만 표시되는 조건부 구분 기호(\" - \")",
|
||||
"window.newWindowDimensions.default": "화면 가운데에서 새 창을 엽니다.",
|
||||
"window.newWindowDimensions.inherit": "마지막 활성 창과 동일한 크기로 새 창을 엽니다.",
|
||||
"window.newWindowDimensions.maximized": "최대화된 새 창을 엽니다.",
|
||||
@@ -74,6 +79,8 @@
|
||||
"autoDetectHighContrast": "사용하도록 설정한 경우 Windows에서 고대비 테마를 사용 중이면 고대비 테마로 자동으로 변경되고 Windows 고대비 테마를 해제하면 어두운 테마로 변경됩니다.",
|
||||
"titleBarStyle": "창 제목 표시줄의 모양을 조정합니다. 변경 내용을 적용하려면 전체 다시 시작해야 합니다.",
|
||||
"window.nativeTabs": "macOS Sierra 창 탭을 사용하도록 설정합니다. 변경\n 내용을 적용하려면 전체 다시 시작해야 하고, 기본 탭에서\n 사용자 지정 제목 표시줄 스타일(구성된 경우)을 비활성화합니다.",
|
||||
"window.smoothScrollingWorkaround": "최소화된 VS Code 창을 복원한 후 더 이상 원활하게 스크롤되지 않으면 이 해결 방법을 사용하도록 설정하세요. 이 해결 방법은 Microsoft의 Surface 장치와 같이 정밀 트랙 패드가 장착된 장치에서 스크롤이 지연되기 시작하는 문제(https://github.com/Microsoft/vscode/issues/13612)를 해결합니다. 이 해결 방법을 사용하도록 설정하면 최소화된 상태에서 창을 복원한 후 약간의 레이아웃 깜박거림이 발생할 수 있지만 그 외의 해는 없습니다.",
|
||||
"window.clickThroughInactive": "사용하도록 설정한 경우 비활성 창을 클릭하면 창도 활성화되고 클릭 가능한 경우 마우스 아래의 요소도 트리거됩니다. 사용하지 않도록 설정한 경우 비활성 창에서 아무곳이나 클릭하면 창만 활성화되며 요소는 또 한번 클릭해야 합니다.",
|
||||
"zenModeConfigurationTitle": "Zen 모드",
|
||||
"zenMode.fullScreen": "Zen 모드를 켜면 워크벤치도 전체 화면 모드로 전환되는지 여부를 제어합니다.",
|
||||
"zenMode.centerLayout": "Zen 모드를 켜면 레이아웃도 가운데로 맞춰지는지 여부를 제어합니다.",
|
||||
|
||||
@@ -2,11 +2,14 @@
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Copyright (c) Microsoft Corporation. All rights reserved.",
|
||||
"Licensed under the Source EULA. See License.txt in the project root for license information.",
|
||||
"Licensed under the MIT License. See License.txt in the project root for license information.",
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"editConditionalBreakpoint": "중단점 편집...",
|
||||
"logPoint": "Logpoint",
|
||||
"breakpoint": "중단점",
|
||||
"editBreakpoint": "{0} 편집...",
|
||||
"removeBreakpoint": "{0} 제거",
|
||||
"functionBreakpointsNotSupported": "이 디버그 형식은 함수 중단점을 지원하지 않습니다.",
|
||||
"functionBreakpointPlaceholder": "중단할 함수",
|
||||
"functionBreakPointInputAriaLabel": "함수 중단점 입력",
|
||||
@@ -14,6 +17,7 @@
|
||||
"breakpointUnverifieddHover": "확인되지 않은 중단점",
|
||||
"functionBreakpointUnsupported": "이 디버그 형식은 함수 중단점을 지원하지 않습니다.",
|
||||
"breakpointDirtydHover": "확인되지 않은 중단점입니다. 파일이 수정되었습니다. 디버그 세션을 다시 시작하세요.",
|
||||
"logBreakpointUnsupported": "이 디버그 형식에서 지원되지 않는 logpoint",
|
||||
"conditionalBreakpointUnsupported": "이 디버그 형식에서 지원되지 않는 조건부 중단점",
|
||||
"hitBreakpointUnsupported": "이 디버그 형식은 조건부 중단점 적중을 지원하지 않습니다."
|
||||
}
|
||||
@@ -21,19 +21,16 @@
|
||||
"disconnectDebug": "연결 끊기",
|
||||
"continueDebug": "계속",
|
||||
"pauseDebug": "일시 중지",
|
||||
"terminateThread": "스레드 종료",
|
||||
"restartFrame": "프레임 다시 시작",
|
||||
"removeBreakpoint": "중단점 제거",
|
||||
"removeAllBreakpoints": "모든 중단점 제거",
|
||||
"enableBreakpoint": "중단점 사용",
|
||||
"disableBreakpoint": "중단점 사용 안 함",
|
||||
"enableAllBreakpoints": "모든 중단점 설정",
|
||||
"disableAllBreakpoints": "모든 중단점 해제",
|
||||
"activateBreakpoints": "중단점 활성화",
|
||||
"deactivateBreakpoints": "중단점 비활성화",
|
||||
"reapplyAllBreakpoints": "모든 중단점 다시 적용",
|
||||
"addFunctionBreakpoint": "함수 중단점 추가",
|
||||
"addConditionalBreakpoint": "조건부 중단점 추가...",
|
||||
"editConditionalBreakpoint": "중단점 편집...",
|
||||
"setValue": "값 설정",
|
||||
"addWatchExpression": "식 추가",
|
||||
"editWatchExpression": "식 편집",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
],
|
||||
"toggleBreakpointAction": "디버그: 중단점 설정/해제",
|
||||
"conditionalBreakpointEditorAction": "디버그: 조건부 중단점 추가...",
|
||||
"logPointEditorAction": "디버그: Logpoint 추가...",
|
||||
"runToCursor": "커서까지 실행",
|
||||
"debugEvaluate": "디버그: 평가",
|
||||
"debugAddToWatch": "디버그: 조사식에 추가",
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"": [
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"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."
|
||||
],
|
||||
"breakpointWidgetLogMessagePlaceholder": "중단점이 적중될 때 기록할 메시지입니다. {} 내의 식은 보간됩니다. 수락하려면 'Enter' 키를 누르고 취소하려면 'esc' 키를 누르세요.",
|
||||
"breakpointWidgetHitCountPlaceholder": "적중 횟수 조건이 충족될 경우 중단합니다. 적용하려면 'Enter' 키를 누르고 취소하려면 'Esc' 키를 누릅니다.",
|
||||
"breakpointWidgetExpressionPlaceholder": "식이 true로 계산될 경우 중단합니다. 적용하려면 'Enter' 키를 누르고 취소하려면 'Esc' 키를 누릅니다.",
|
||||
"expression": "식",
|
||||
"hitCount": "적중 횟수",
|
||||
"logMessage": "로그 메시지"
|
||||
}
|
||||
@@ -35,7 +35,7 @@
|
||||
"useUniqueNames": "고유한 구성 이름을 사용하세요.",
|
||||
"app.launch.json.compound.folder": "복합형 항목이 있는 폴더의 이름입니다.",
|
||||
"app.launch.json.compounds.configurations": "이 복합의 일부로 시작되는 구성의 이름입니다.",
|
||||
"debugNoType": "디버그 어댑터 '형식'은 생략할 수 없으며 '문자열' 형식이어야 합니다.",
|
||||
"debugNoType": "디버거 '형식'은 생략할 수 없으며 '문자열' 형식이어야 합니다.",
|
||||
"selectDebug": "환경 선택",
|
||||
"DebugConfig.failed": "'.vscode' 폴더({0}) 내에 'launch.json' 파일을 만들 수 없습니다.",
|
||||
"workspace": "작업 영역",
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
"--------------------------------------------------------------------------------------------",
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"logPoint": "Logpoint",
|
||||
"breakpoint": "중단점",
|
||||
"removeBreakpoint": "{0} 제거",
|
||||
"editBreakpoint": "{0} 편집...",
|
||||
"disableBreakpoint": "{0} 사용 안 함",
|
||||
"enableBreakpoint": "{0} 사용",
|
||||
"removeBreakpoints": "중단점 제거",
|
||||
"removeBreakpointOnColumn": "{0} 열에서 중단점 제거",
|
||||
"removeLineBreakpoint": "줄 중단점 제거",
|
||||
@@ -18,5 +24,13 @@
|
||||
"enableBreakpoints": "{0} 열에서 중단점 사용",
|
||||
"enableBreakpointOnLine": "줄 중단점 사용",
|
||||
"addBreakpoint": "중단점 추가",
|
||||
"addConditionalBreakpoint": "조건부 중단점 추가...",
|
||||
"addLogPoint": "Logpoint 추가...",
|
||||
"breakpointHasCondition": "이 {0}에는 제거 시 손실되는 {1}이(가) 있습니다. 대신 {0}을(를) 사용하지 않도록 설정하세요.",
|
||||
"message": "메시지",
|
||||
"condition": "조건",
|
||||
"removeLogPoint": "{0} 제거",
|
||||
"disableLogPoint": "{0} 사용 안 함",
|
||||
"cancel": "취소",
|
||||
"addConfiguration": "구성 추가..."
|
||||
}
|
||||
@@ -29,6 +29,6 @@
|
||||
"showErrors": "오류 표시",
|
||||
"noFolderWorkspaceDebugError": "활성 파일은 디버그할 수 없습니다. 이 파일이 디스크에 저장되어 있고 해당 파일 형식에 대한 디버그 확장이 설치되어 있는지 확인하세요.",
|
||||
"cancel": "취소",
|
||||
"DebugTaskNotFound": "preLaunchTask '{0}'을(를) 찾을 수 없습니다.",
|
||||
"taskNotTracked": "PreLaunchTask '{0}'을(를) 추적할 수 없습니다."
|
||||
"DebugTaskNotFound": "작업 '{0}' 을(를) 찾을 수 없습니다.",
|
||||
"taskNotTracked": "작업 '{0}' 을(를) 추적할 수 없습니다."
|
||||
}
|
||||
@@ -7,8 +7,5 @@
|
||||
"Do not edit this file. It is machine generated."
|
||||
],
|
||||
"moreInfo": "추가 정보",
|
||||
"unableToLaunchDebugAdapter": "'{0}'에서 디버그 어댑터를 시작할 수 없습니다.",
|
||||
"unableToLaunchDebugAdapterNoArgs": "디버그 어댑터를 시작할 수 없습니다.",
|
||||
"stoppingDebugAdapter": "{0}. 디버그 어댑터를 중지합니다.",
|
||||
"debugAdapterCrash": "디버그 어댑터 프로세스가 예기치 않게 종료되었습니다."
|
||||
}
|
||||
@@ -8,18 +8,6 @@
|
||||
],
|
||||
"debugAdapterBinNotFound": "디버그 어댑터 실행 파일 '{0}'이(가) 없습니다.",
|
||||
"debugAdapterCannotDetermineExecutable": "디버그 어댑터 '{0}'에 대한 실행 파일을 확인할 수 없습니다.",
|
||||
"launch.config.comment1": "IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.",
|
||||
"launch.config.comment2": "기존 특성에 대한 설명을 보려면 가리킵니다.",
|
||||
"launch.config.comment3": "자세한 내용을 보려면 {0}을(를) 방문하세요.",
|
||||
"debugType": "구성의 형식입니다.",
|
||||
"debugTypeNotRecognised": "디버그 형식이 인식되지 않습니다. 해당하는 디버그 확장을 설치하고 사용하도록 설정했는지 확인하세요.",
|
||||
"node2NotSupported": "\"node2\"는 더 이상 지원되지 않습니다. 대신 \"node\"를 사용하고 \"protocol\" 특성을 \"inspector\"로 설정하세요.",
|
||||
"debugName": "구성 이름이며, 구성 시작 드롭다운 메뉴에 표시됩니다.",
|
||||
"debugRequest": "구성 형식을 요청합니다. \"시작\" 또는 \"연결\"일 수 있습니다.",
|
||||
"debugServer": "디버그 확장 배포 전용입니다. 포트가 지정된 경우 VS Code에서는 서버 모드로 실행하는 디버그 어댑터에 연결을 시도합니다.",
|
||||
"debugPrelaunchTask": "디버그 세션이 시작되기 이전에 실행할 작업입니다.",
|
||||
"debugWindowsConfiguration": "Windows 특정 시작 구성 특성입니다.",
|
||||
"debugOSXConfiguration": "OS X 특정 시작 구성 특성입니다.",
|
||||
"debugLinuxConfiguration": "Linux 특정 시작 구성 특성입니다.",
|
||||
"deprecatedVariables": "'env.', 'config.' 및 'command.'는 사용되지 않습니다. 대신 'env:', 'config:' 및 'command:'를 사용하세요."
|
||||
"unableToLaunchDebugAdapter": "'{0}'에서 디버그 어댑터를 시작할 수 없습니다.",
|
||||
"unableToLaunchDebugAdapterNoArgs": "디버그 어댑터를 시작할 수 없습니다."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"launch.config.comment1": "IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.",
|
||||
"launch.config.comment2": "기존 특성에 대한 설명을 보려면 가리킵니다.",
|
||||
"launch.config.comment3": "자세한 내용을 보려면 {0}을(를) 방문하세요.",
|
||||
"debugType": "구성의 형식입니다.",
|
||||
"debugTypeNotRecognised": "디버그 형식이 인식되지 않습니다. 해당하는 디버그 확장을 설치하고 사용하도록 설정했는지 확인하세요.",
|
||||
"node2NotSupported": "\"node2\"는 더 이상 지원되지 않습니다. 대신 \"node\"를 사용하고 \"protocol\" 특성을 \"inspector\"로 설정하세요.",
|
||||
"debugName": "구성 이름이며, 구성 시작 드롭다운 메뉴에 표시됩니다.",
|
||||
"debugRequest": "구성 형식을 요청합니다. \"시작\" 또는 \"연결\"일 수 있습니다.",
|
||||
"debugServer": "디버그 확장 배포 전용입니다. 포트가 지정된 경우 VS Code에서는 서버 모드로 실행하는 디버그 어댑터에 연결을 시도합니다.",
|
||||
"debugPrelaunchTask": "디버그 세션이 시작되기 이전에 실행할 작업입니다.",
|
||||
"debugPostDebugTask": "디버그 세션 종료 후 실행할 작업입니다.",
|
||||
"debugWindowsConfiguration": "Windows 특정 시작 구성 특성입니다.",
|
||||
"debugOSXConfiguration": "OS X 특정 시작 구성 특성입니다.",
|
||||
"debugLinuxConfiguration": "Linux 특정 시작 구성 특성입니다.",
|
||||
"deprecatedVariables": "'env.', 'config.' 및 'command.'는 사용되지 않습니다. 대신 'env:', 'config:' 및 'command:'를 사용하세요."
|
||||
}
|
||||
@@ -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."
|
||||
],
|
||||
"console.title": "VS Code 콘솔",
|
||||
"mac.terminal.script.failed": "스크립트 '{0}'이(가) 실패했습니다(종료 코드: {1}).",
|
||||
"mac.terminal.type.not.supported": "'{0}'이(가) 지원되지 않습니다.",
|
||||
"press.any.key": "계속하려면 아무 키나 누르세요.",
|
||||
"linux.term.failed": "'{0}'에서 실패했습니다(종료 코드: {1})."
|
||||
}
|
||||
@@ -58,6 +58,9 @@
|
||||
"configureWorkspaceFolderRecommendedExtensions": "권장 확장 구성(작업 영역 폴더)",
|
||||
"malicious tooltip": "이 확장은 문제가 있다고 보고되었습니다.",
|
||||
"malicious": "악성",
|
||||
"disabled": "사용 안 함",
|
||||
"disabled globally": "사용 안 함",
|
||||
"disabled workspace": "이 작업 영역에 대해 사용 안 함",
|
||||
"disableAll": "설치된 모든 확장 사용 안 함",
|
||||
"disableAllWorkspace": "이 작업 영역에 대해 설치된 모든 확장 사용 안 함",
|
||||
"enableAll": "모든 확장 사용",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user