├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── codeql │ └── codeql-config.yml ├── pull_request_template.md └── workflows │ ├── cla.yml │ └── main.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DevREADME.md ├── LICENSE.md ├── NOTICE.md ├── README.md ├── extension ├── data │ ├── alldclkeys.txt │ ├── alllispkeys.txt │ ├── cmdAndVarsList.txt │ └── winonlylispkeys_prefix.txt ├── smartBracket │ ├── language-configuration-dcl.json │ └── language-configuration.json ├── src │ ├── astObjects │ │ ├── ILispFragment.ts │ │ ├── dclAtom.ts │ │ ├── dclAttribute.ts │ │ ├── dclInterfaces.ts │ │ ├── dclTile.ts │ │ ├── lispAtom.ts │ │ ├── lispContainer.ts │ │ └── sexpression.ts │ ├── commands.ts │ ├── completion │ │ ├── autocompletionProvider.ts │ │ ├── completionItemDcl.ts │ │ ├── completionLibraryDcl.ts │ │ └── completionProviderDcl.ts │ ├── context.ts │ ├── debug.ts │ ├── diagnosticsCtrl.ts │ ├── documents.ts │ ├── extension.ts │ ├── format │ │ ├── autoIndent.ts │ │ ├── fmtconfig.ts │ │ ├── formatProviders.ts │ │ ├── formatter.ts │ │ └── listreader.ts │ ├── help │ │ ├── documentationLibrary.ts │ │ ├── documentationObjects.ts │ │ ├── documentationPresenter.ts │ │ ├── openWebHelp.md │ │ ├── userDocumentation.ts │ │ └── webHelpAbstraction.json │ ├── parsing │ │ ├── comments.ts │ │ ├── containers.ts │ │ ├── dclParser.ts │ │ ├── lispParser.ts │ │ └── shared.ts │ ├── platform.ts │ ├── process │ │ ├── acadPicker.ts │ │ ├── processCache.ts │ │ └── processTree.ts │ ├── project │ │ ├── addFile2Project.ts │ │ ├── checkUnsavedChanges.ts │ │ ├── createProject.ts │ │ ├── excludeFile.ts │ │ ├── findReplace │ │ │ ├── applyReplacement.ts │ │ │ ├── clearResults.ts │ │ │ ├── encoding.ts │ │ │ ├── findInProject.ts │ │ │ ├── openSearchResult.ts │ │ │ ├── optionButton.ts │ │ │ ├── options.ts │ │ │ ├── replaceInProject.ts │ │ │ ├── ripGrep.ts │ │ │ └── searchTree.ts │ │ ├── icons.ts │ │ ├── openLspFile.ts │ │ ├── openProject.ts │ │ ├── projectCommands.ts │ │ ├── projectDefinition.ts │ │ ├── projectTree.ts │ │ ├── projectutil.ts │ │ ├── readOnlyDocument.ts │ │ ├── refreshProject.ts │ │ └── saveProject.ts │ ├── providers │ │ ├── gotoProvider.ts │ │ ├── hoverProvider.ts │ │ ├── providerShared.ts │ │ ├── referenceProvider.ts │ │ └── renameProvider.ts │ ├── resources.ts │ ├── services │ │ ├── documentServices.ts │ │ ├── flatContainerServices.ts │ │ ├── lispContainerServices.ts │ │ └── symbolServices.ts │ ├── statusbar.ts │ ├── symbols.ts │ ├── test │ │ ├── Baseline │ │ │ ├── formatedBasefile1.lsp │ │ │ ├── formatedBasefile10.lsp │ │ │ ├── formatedBasefile11.lsp │ │ │ ├── formatedBasefile12.lsp │ │ │ ├── formatedBasefile13.lsp │ │ │ ├── formatedBasefile14.lsp │ │ │ ├── formatedBasefile15.lsp │ │ │ ├── formatedBasefile16.lsp │ │ │ ├── formatedBasefile17.lsp │ │ │ ├── formatedBasefile18.lsp │ │ │ ├── formatedBasefile19.lsp │ │ │ ├── formatedBasefile2.lsp │ │ │ ├── formatedBasefile3.lsp │ │ │ ├── formatedBasefile4.lsp │ │ │ ├── formatedBasefile5.lsp │ │ │ ├── formatedBasefile6.lsp │ │ │ ├── formatedBasefile7.lsp │ │ │ ├── formatedBasefile8.lsp │ │ │ └── formatedBasefile9.lsp │ │ ├── BaselineMDs │ │ │ ├── CCText.md │ │ │ ├── LoadGlobalVariables.md │ │ │ ├── LookBusy.md │ │ │ ├── acAttachmentPointTopLeft.md │ │ │ ├── boxed_row.md │ │ │ ├── button.md │ │ │ ├── children_alignment.md │ │ │ ├── command.md │ │ │ ├── dialog.md │ │ │ ├── dynamic.md │ │ │ ├── is_cancel.md │ │ │ ├── label.md │ │ │ ├── not.md │ │ │ ├── ok_cancel.md │ │ │ ├── setq.md │ │ │ ├── settextstyle.md │ │ │ ├── vla-get-layers.md │ │ │ ├── vla-put-attachmentpoint.md │ │ │ ├── vlax-3d-point-1.md │ │ │ ├── vlax-3d-point-2.md │ │ │ └── vlax-3d-point-ACTIVE.md │ │ ├── SourceFile │ │ │ ├── autoIndentTestFile.lsp │ │ │ ├── getWordmatch.lsp │ │ │ ├── renaming │ │ │ │ ├── dialog.dcl │ │ │ │ ├── modelspace utilities.lsp │ │ │ │ ├── paperspace utilities.lsp │ │ │ │ └── standards.lsp │ │ │ ├── test_case │ │ │ │ ├── assorted.prj │ │ │ │ ├── comments.lsp │ │ │ │ ├── pdfMarkups.lsp │ │ │ │ ├── project_no_lisp_file.prj │ │ │ │ ├── project_test_file.prj │ │ │ │ ├── symbols.lsp │ │ │ │ └── test_remove.lsp │ │ │ ├── unFormatted1.lsp │ │ │ ├── unFormatted10.lsp │ │ │ ├── unFormatted11.lsp │ │ │ ├── unFormatted12.lsp │ │ │ ├── unFormatted13.lsp │ │ │ ├── unFormatted14.lsp │ │ │ ├── unFormatted15.lsp │ │ │ ├── unFormatted16.lsp │ │ │ ├── unFormatted17.lsp │ │ │ ├── unFormatted18.lsp │ │ │ ├── unFormatted19.lsp │ │ │ ├── unFormatted2.lsp │ │ │ ├── unFormatted3.lsp │ │ │ ├── unFormatted4.lsp │ │ │ ├── unFormatted5.lsp │ │ │ ├── unFormatted6.lsp │ │ │ ├── unFormatted7.lsp │ │ │ ├── unFormatted8.lsp │ │ │ └── unFormatted9.lsp │ │ ├── e2e │ │ │ ├── config.ts │ │ │ └── debugConfig.ts │ │ ├── runTest.ts │ │ └── suite │ │ │ ├── 1st.test.ts │ │ │ ├── AutoCompletion.test.ts │ │ │ ├── AutoIndent.test.ts │ │ │ ├── DocumentContainer.test.ts │ │ │ ├── Formatter.test.ts │ │ │ ├── LispAtom.test.ts │ │ │ ├── LispContainer.test.ts │ │ │ ├── ReadonlyDocument.test.ts │ │ │ ├── astObjects.DclAtom.test.ts │ │ │ ├── astObjects.DclAttribute.test.ts │ │ │ ├── astObjects.DclTile.test.ts │ │ │ ├── codeCoverage.ts │ │ │ ├── help.userDocumentation.test.ts │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ ├── parsing.comments.test.ts │ │ │ ├── parsing.dclParser.test.ts │ │ │ ├── parsing.shared.test.ts │ │ │ ├── project.test.ts │ │ │ ├── providers.completionDcl.test.ts │ │ │ ├── providers.gotoProvider.test.ts │ │ │ ├── providers.hoverProvider.test.ts │ │ │ ├── providers.referenceProvider.test.ts │ │ │ ├── providers.renameProvider.test.ts │ │ │ ├── services.documentServices.test.ts │ │ │ ├── services.flatContainerServices.test.ts │ │ │ ├── services.lispContainerServices.test.ts │ │ │ ├── services.symbolServices.test.ts │ │ │ └── symbols.test.ts │ ├── uriHandler.ts │ └── utils.ts └── syntaxes │ ├── autolisp.tmLanguage.json │ └── autolispdcl.tmLanguage.json ├── gulpfile.js ├── i18n ├── chs │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── cht │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── csy │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── deu │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── enu │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── esp │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── fra │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── hun │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── ita │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── jpn │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── kor │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── plk │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json ├── ptb │ ├── out │ │ ├── commands.i18n.json │ │ ├── completion │ │ │ ├── completionLibraryDcl.i18n.json │ │ │ └── completionProviderDcl.i18n.json │ │ ├── debug.i18n.json │ │ ├── format │ │ │ ├── formatProviders.i18n.json │ │ │ └── formatter.i18n.json │ │ ├── process │ │ │ └── acadPicker.i18n.json │ │ ├── project │ │ │ ├── addFile2Project.i18n.json │ │ │ ├── checkUnsavedChanges.i18n.json │ │ │ ├── createProject.i18n.json │ │ │ ├── excludeFile.i18n.json │ │ │ ├── findReplace │ │ │ │ ├── applyReplacement.i18n.json │ │ │ │ ├── clearResults.i18n.json │ │ │ │ ├── findInProject.i18n.json │ │ │ │ ├── openSearchResult.i18n.json │ │ │ │ ├── optionButton.i18n.json │ │ │ │ ├── options.i18n.json │ │ │ │ ├── replaceInProject.i18n.json │ │ │ │ └── searchTree.i18n.json │ │ │ ├── openLspFile.i18n.json │ │ │ ├── openProject.i18n.json │ │ │ ├── projectCommands.i18n.json │ │ │ ├── projectTree.i18n.json │ │ │ ├── readOnlyDocument.i18n.json │ │ │ └── saveProject.i18n.json │ │ ├── providers │ │ │ └── hoverProvider.i18n.json │ │ ├── statusbar.i18n.json │ │ └── uriHandler.i18n.json │ └── package.i18n.json └── rus │ ├── out │ ├── commands.i18n.json │ ├── completion │ │ ├── completionLibraryDcl.i18n.json │ │ └── completionProviderDcl.i18n.json │ ├── debug.i18n.json │ ├── format │ │ ├── formatProviders.i18n.json │ │ └── formatter.i18n.json │ ├── process │ │ └── acadPicker.i18n.json │ ├── project │ │ ├── addFile2Project.i18n.json │ │ ├── checkUnsavedChanges.i18n.json │ │ ├── createProject.i18n.json │ │ ├── excludeFile.i18n.json │ │ ├── findReplace │ │ │ ├── applyReplacement.i18n.json │ │ │ ├── clearResults.i18n.json │ │ │ ├── findInProject.i18n.json │ │ │ ├── openSearchResult.i18n.json │ │ │ ├── optionButton.i18n.json │ │ │ ├── options.i18n.json │ │ │ ├── replaceInProject.i18n.json │ │ │ └── searchTree.i18n.json │ │ ├── openLspFile.i18n.json │ │ ├── openProject.i18n.json │ │ ├── projectCommands.i18n.json │ │ ├── projectTree.i18n.json │ │ ├── readOnlyDocument.i18n.json │ │ └── saveProject.i18n.json │ ├── providers │ │ └── hoverProvider.i18n.json │ ├── statusbar.i18n.json │ └── uriHandler.i18n.json │ └── package.i18n.json ├── images ├── Project_Management.svg ├── adsk_lisp.png ├── dark │ ├── Add_LISP_File.svg │ ├── Clean.svg │ ├── Create_Project.svg │ ├── Error_LISP_File.svg │ ├── Find.svg │ ├── Hide_Path.svg │ ├── LISP_file.svg │ ├── Load_to_AutoCAD.svg │ ├── Match_Case_Off.svg │ ├── Match_Case_On.svg │ ├── Match_Whole_Word_Off.svg │ ├── Match_Whole_Word_On.svg │ ├── Open_Project.svg │ ├── Refresh.svg │ ├── Regular_Expression_Off.svg │ ├── Regular_Expression_On.svg │ ├── Remove_LISP_File.svg │ ├── Replace.svg │ ├── Save_Project.svg │ ├── Show_Path.svg │ ├── close.svg │ └── search-stop.svg └── light │ ├── Add_LISP_File.svg │ ├── Clean.svg │ ├── Create_Project.svg │ ├── Error_LISP_File.svg │ ├── Find.svg │ ├── Hide_Path.svg │ ├── LISP_file.svg │ ├── Load_to_AutoCAD.svg │ ├── Match_Case_Off.svg │ ├── Match_Case_On.svg │ ├── Match_Whole_Word_Off.svg │ ├── Match_Whole_Word_On.svg │ ├── Open_Project.svg │ ├── Refresh.svg │ ├── Regular_Expression_Off.svg │ ├── Regular_Expression_On.svg │ ├── Remove_LISP_File.svg │ ├── Replace.svg │ ├── Save_Project.svg │ ├── Show_Path.svg │ ├── close.svg │ └── search-stop.svg ├── macCompile.sh ├── pack.py ├── package-lock.json ├── package.json ├── package.nls.json ├── publish.py ├── snippets └── snippets.json ├── tsconfig.json ├── tslint.json ├── utils ├── HelpAbstractionGenerator │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── HelpAbstractionGenerator.csproj │ ├── HelpAbstractionGenerator.csproj.user │ ├── HelpAbstractionGenerator.sln │ ├── InterfaceUtilities │ │ ├── AttachedProperties.cs │ │ ├── InterfaceObjects.cs │ │ ├── StyleSelectors.cs │ │ └── TemplateSelectors.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReadMe.md │ ├── StaticUtilities.cs │ ├── StepBehaviors │ │ ├── Step3.GuidDownloader.cs │ │ ├── Step4.WebObjectLibrary.cs │ │ └── Step5.ApplyOverrides.cs │ ├── bin │ │ └── Debug │ │ │ ├── HelpAbstractionGenerator.exe │ │ │ ├── HelpAbstractionGenerator.exe.config │ │ │ ├── HtmlAgilityPack.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Processing │ │ │ └── ExtractHere.zip │ ├── images │ │ ├── step1.png │ │ ├── step2.png │ │ ├── step3.png │ │ ├── step4.png │ │ └── step5.png │ └── packages.config ├── acadProcessFinder │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── acadProcessFinder.csproj │ └── bin │ │ └── acadProcessFinder.exe ├── autolispext.i18.helper │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── README.md │ ├── autolispext.i18.helper.csproj │ ├── autolispext.i18.helper.csproj.user │ ├── autolispext.i18.helper.sln │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── autolispext.i18.helper.deps.json │ │ │ ├── autolispext.i18.helper.dll │ │ │ ├── autolispext.i18.helper.exe │ │ │ ├── autolispext.i18.helper.pdb │ │ │ ├── autolispext.i18.helper.runtimeconfig.dev.json │ │ │ └── autolispext.i18.helper.runtimeconfig.json │ ├── extensions.cs │ └── images │ │ ├── screen1.png │ │ └── screen2.png └── vscode-ripgrep │ ├── readme.txt │ ├── ripgrep-v11.0.1-2-x86_64-apple-darwin │ └── rg.app │ └── ripgrep-v11.0.1-2-x86_64-pc-windows-msvc │ └── rg.exe └── winCompile.bat /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Version [e.g. 22] 29 | 30 | **Additional context** 31 | Add any other context about the problem here. 32 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- 1 | name: "Custom CodeQL Config" 2 | 3 | queries: 4 | - uses: security-and-quality 5 | 6 | paths: 7 | - 'extension/src' 8 | 9 | paths-ignore: 10 | - 'extension/src/**/' 11 | - '**/*.test.ts' -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ##### Objective 2 | 3 | 4 | ##### Abstractions 5 | 6 | 7 | ##### Tests performed 8 | 9 | 10 | ##### Screen shot 11 | 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /out 3 | vendor 4 | tmp 5 | autolispext*.zip 6 | package.nls.*.json 7 | 8 | .nyc_output 9 | .vscode-test 10 | coverage 11 | test-resources 12 | 13 | utils/HelpAbstractionGenerator/**/*.pdb 14 | utils/HelpAbstractionGenerator/**/*.xml 15 | utils/HelpAbstractionGenerator/.vs 16 | utils/HelpAbstractionGenerator/obj 17 | utils/HelpAbstractionGenerator/packages 18 | 19 | utils/autolispext.i18.helper/**/*.pdb 20 | utils/autolispext.i18.helper/**/*.xml 21 | utils/autolispext.i18.helper/.vs 22 | utils/autolispext.i18.helper/obj 23 | utils/autolispext.i18.helper/packages 24 | 25 | extension/src/test/OutputFile 26 | 27 | *.vsix -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | "eg2.tslint" 6 | ] 7 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.exclude": { 4 | "out": false // set this to true to hide the "out" folder with the compiled JS files 5 | }, 6 | "search.exclude": { 7 | "out": true // set this to false to include "out" folder in search results 8 | }, 9 | "editor.insertSpaces": false, 10 | "tslint.enable": true, 11 | // Turn off tsc task auto detection since we have the necessary tasks as npm scripts 12 | "typescript.tsc.autoDetect": "off", 13 | "typescript.preferences.quoteStyle": "single" 14 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .git/** 2 | .github/** 3 | .nyc_output/** 4 | .vscode/** 5 | .vscode-test/** 6 | coverage/** 7 | extension/out/test/** 8 | extension/out/**/*.map 9 | extension/src/** 10 | extension/package-lock.json 11 | extension/tsconfig.json 12 | extension/vsc-extension-quickstart.md 13 | extension/node_modules/** 14 | test_case/** 15 | test-resources/** 16 | vendor/** 17 | out/test/** 18 | out/**/*.map 19 | src/** 20 | .gitignore 21 | .vscodeignore 22 | DevREADME.md 23 | Jenkinsfile 24 | pack.py 25 | winCompile.bat 26 | macCompile.sh 27 | package-lock.json 28 | publish.py 29 | tsconfig.json 30 | tslint.json 31 | utils/** 32 | -------------------------------------------------------------------------------- /extension/data/winonlylispkeys_prefix.txt: -------------------------------------------------------------------------------- 1 | vla- 2 | vlax- 3 | vlr- 4 | vl-load-com 5 | vl-load-reactors 6 | vlisp- -------------------------------------------------------------------------------- /extension/smartBracket/language-configuration-dcl.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "blockComment": [ "/*", "*/" ], 4 | "lineComment": "//" 5 | }, 6 | "brackets": [ 7 | ["{", "}"] 8 | ], 9 | "autoClosingPairs": [ 10 | ["{", "}"] 11 | ], 12 | "surroundingPairs": [ 13 | ["\"", "\""] 14 | ], 15 | "folding": { 16 | "markers": { 17 | "start": "^\\s*\/\/\\s*#?region\\b", 18 | "end": "^\\s*\/\/\\s*#?endregion\\b" 19 | } 20 | }, 21 | "indentationRules": { 22 | "increaseIndentPattern": "{", 23 | "decreaseIndentPattern": "}" 24 | } 25 | } -------------------------------------------------------------------------------- /extension/smartBracket/language-configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "blockComment": [ ";|", "|;" ], 4 | "lineComment": ";", 5 | }, 6 | "brackets": [ 7 | ["(", ")"], 8 | ["[", "]"] 9 | ], 10 | "autoClosingPairs": [ 11 | {"open": "(", "close": ")"}, 12 | {"open": "[", "close": "]"}, 13 | {"open": "\"","close": "\"", "notIn": ["string"]}, 14 | {"open": "#|", "close": "|#"}, 15 | {"open": ";|", "close": "|;"} 16 | ], 17 | "surroundingPairs": [ 18 | ["\"", "\""], 19 | ["(", ")"], 20 | ["[","]"], 21 | ["#|", "|#"], 22 | [";|", "|;"] 23 | ], 24 | "folding": { 25 | "markers": { 26 | "start": "^\\s*;\\s*#?region\\b", 27 | "end": "^\\s*;\\s*#?endregion\\b" 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /extension/src/format/fmtconfig.ts: -------------------------------------------------------------------------------- 1 | import { workspace } from 'vscode'; 2 | 3 | 4 | export function closeParenStyle(): 'Same line' | 'New line with outer identation' { 5 | return workspace.getConfiguration('autolispext').get('format.CloseParenthesisStyle') || 'New line with outer identation'; 6 | } 7 | 8 | export function maximumLineChars(): number { 9 | return workspace.getConfiguration('autolispext').get('format.MaxLineChars') || 85; 10 | } 11 | 12 | export function longListFormatStyle(): 'Single Column' | 'Fill to Margin' { 13 | return workspace.getConfiguration('autolispext').get('format.LongListFormatStyle') || 'Fill to Margin'; 14 | } 15 | 16 | export function indentSpaces(): number { 17 | return workspace.getConfiguration('autolispext').get('format.NarrowStyleIndent') || 2; 18 | } -------------------------------------------------------------------------------- /extension/src/parsing/shared.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | 3 | export function getEOL(document: vscode.TextDocument): string { 4 | return endOfLineEnum2String(document.eol); 5 | } 6 | 7 | export function endOfLineEnum2String(eolEnum: vscode.EndOfLine): string { 8 | switch (eolEnum) { 9 | case vscode.EndOfLine.LF: 10 | return "\n"; 11 | 12 | case vscode.EndOfLine.CRLF: 13 | return "\r\n"; 14 | 15 | default: 16 | console.log("Unexpected eol\n"); 17 | return "\r\n"; 18 | } 19 | } -------------------------------------------------------------------------------- /extension/src/project/projectutil.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from "vscode"; 2 | 3 | export function getTreeItemTitle(treeNode: vscode.TreeItem): string { 4 | if (treeNode.label instanceof String) { 5 | var res = treeNode.label as string; 6 | return res; 7 | } 8 | var itemlebel = treeNode.label as vscode.TreeItemLabel; 9 | return itemlebel.label; 10 | } 11 | -------------------------------------------------------------------------------- /extension/src/project/refreshProject.ts: -------------------------------------------------------------------------------- 1 | import { OpenProjectFile } from './openProject'; 2 | import { ProjectTreeProvider } from './projectTree'; 3 | import * as vscode from 'vscode'; 4 | 5 | export function RefreshProject(){ 6 | if (!ProjectTreeProvider.hasProjectOpened()) { 7 | return; 8 | } 9 | let prjFilePath = ProjectTreeProvider.instance().projectNode.projectFilePath; 10 | let prjNode = OpenProjectFile(vscode.Uri.file(prjFilePath)); 11 | ProjectTreeProvider.instance().updateData(prjNode); 12 | } 13 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile1.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ a b) 2 | (setq a 3) 3 | (setq b "test") 4 | (princ a) 5 | (princ b) 6 | ) 7 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile11.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ a b) 2 | (setq a 3) 3 | (setq b "test") 4 | (princ a) 5 | (princ b) 6 | (setq lst (reverse 7 | (mapcar 8 | '(lambda (a b) 9 | (cons (car a) (cons 42 (- (cddr b)))) 10 | ) 11 | lst 12 | (cons (last lst) lst) 13 | ) 14 | ) 15 | ) 16 | ) 17 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile12.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ a b) 2 | (setq a 3) 3 | (setq b "test") 4 | (princ a) 5 | (princ b) 6 | (setq lst (reverse 7 | (mapcar 8 | '(lambda (a b) 9 | (cons (car a) (cons 42 (- (cddr b))))) 10 | lst 11 | (cons (last lst) lst))))) 12 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile14.lsp: -------------------------------------------------------------------------------- 1 | (defun cleanvirus (/ lspfiles lspfile x) 2 | (setq lspfiles '("acad.vlx" "logo.gif" "acad")) 3 | (foreach lspfile lspfiles 4 | (while (setq x (findfile lspfile)) 5 | (progn 6 | (vl-file-delete x) 7 | (princ "\n Delete file ") 8 | (princ x) 9 | ) ;progn 10 | ) ;while 11 | ) ;foreach 12 | ) 13 | (cleanvirus) -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile18.lsp: -------------------------------------------------------------------------------- 1 | (defun cleanvirus ( / lspfiles lspfile x) 2 | (setq lspfiles 3 | '("acad.vlx" "logo.gif" "acad")) 4 | (foreach lspfile lspfiles 5 | (while (setq x (findfile lspfile)) 6 | (progn 7 | (vl-file-delete x) 8 | (princ "\n Delete file ") 9 | (princ x) 10 | ) ;progn 11 | );while 12 | 13 | );foreach 14 | 15 | ) 16 | (cleanvirus) -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile19.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ *error* a b cen dpr ent lst ocs ofe off tmp 2 | vpe vpt) 3 | (setq a 3) 4 | (setq b 5 | "test") 6 | (princ a) 7 | (princ b) 8 | (setq lst (reverse 9 | (mapcar 10 | '(lambda (a b) 11 | (cons (car a) 12 | (cons 42 (- (cddr b))))) 13 | lst 14 | (cons (last lst) lst)))) 15 | ) 16 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile3.lsp: -------------------------------------------------------------------------------- 1 | (setq lst (reverse 2 | (mapcar 3 | '(lambda (a b) 4 | (cons (car a) (cons 42 (- (cddr b)))) 5 | ) 6 | lst 7 | (cons (last lst) lst) 8 | ) 9 | ) 10 | ) 11 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile4.lsp: -------------------------------------------------------------------------------- 1 | (defun writeascii () 2 | (setq f (open "/user/td/ascii.txt" "w")) 3 | ;format should not remove the empty line after and before 4 | 5 | (setq test 26) 6 | ) 7 | 8 | (defun writea () 9 | 10 | (setq f (open "/user/td/ascii.txt" "w")) 11 | 12 | (setq test 26) 13 | ) 14 | 15 | 16 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile5.lsp: -------------------------------------------------------------------------------- 1 | (defun format_bug_test (/ *error* cen dpr ent lst ocs ofe off tmp 2 | vpe vpt 3 | ) 4 | 5 | (defun *error* (msg) 6 | (if (not (wcmatch (strcase msg t) "*break,*cancel*,*exit*")) 7 | (princ (strcat "\nError: " msg)) 8 | ) 9 | (princ) 10 | ) 11 | ) 12 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile6.lsp: -------------------------------------------------------------------------------- 1 | (while (<= test 100) 2 | (write-char test f) 3 | (setq test (1+ test)) 4 | ) 5 | (if (= a b) 6 | (write-char test f) 7 | (princ "\nA = B ") 8 | ) 9 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile7.lsp: -------------------------------------------------------------------------------- 1 | (ssadd (entlast) ss1) 2 | (command "_-hatch" 3 | "_p" 4 | "solid" 5 | "_s" 6 | ss1 7 | "" 8 | "_co" 9 | "40" 10 | "" 11 | "" 12 | ) 13 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile8.lsp: -------------------------------------------------------------------------------- 1 | (defun testSingleColumn (ctype 2 | wflg 3 | / 4 | ss 5 | x 6 | ix 7 | match 8 | inst 9 | tagln 10 | ; *** 12-Aug-99 PMM 11 | inst 12 | ) ; ** 25-Oct-99 13 | (princ "hello") 14 | ) 15 | -------------------------------------------------------------------------------- /extension/src/test/Baseline/formatedBasefile9.lsp: -------------------------------------------------------------------------------- 1 | ' 2 | ("entdel" "entmake" "entmod" "entnext" "entsel" "entupd") 3 | -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/CCText.md: -------------------------------------------------------------------------------- 1 | $(account) **C:CText** [?] 2 | 3 | Use this command to create all modelspace text 4 | 5 | ------ 6 | (C:CText) 7 | 8 | ------ 9 | @*returns* — $(warning) Undocumented 10 | 11 | ------ 12 | *source* — modelspace utilities.lsp -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/LoadGlobalVariables.md: -------------------------------------------------------------------------------- 1 | $(account) **LoadGlobalVariables** [?] 2 | 3 | Loads all global variables pointing to our standardized style names 4 | 5 | ------ 6 | (LoadGlobalVariables) 7 | 8 | ------ 9 | @*returns* — T 10 | 11 | ------ 12 | *source* — standards.lsp -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/LookBusy.md: -------------------------------------------------------------------------------- 1 | $(account) **LookBusy** [?] 2 | 3 | 4 | ------ 5 | (LookBusy actvDoc workItems seed) 6 | 7 | ------ 8 | @*returns* — $(warning) Undocumented 9 | 10 | ------ 11 | *source* — modelspace utilities.lsp -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/acAttachmentPointTopLeft.md: -------------------------------------------------------------------------------- 1 | $(symbol-enum-member) **vla-get-attachmentpoint** [WIN|?] 2 | 3 | Enumerated Value -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/children_alignment.md: -------------------------------------------------------------------------------- 1 | $(symbol-property) [**children_alignment**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-BFB3C271-5705-4518-9E80-E4693B507C13) [WIN|MAC] 2 | 3 | Specifies the default alignment (similar to alignment) for all tiles in a cluster. 4 | 5 | ------ 6 | children_alignment = position; 7 | 8 | ------ 9 | Type: enum 10 | - left 11 | - right 12 | - top 13 | - bottom 14 | - centered -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/command.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**command**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-1C989B35-2C5A-47EC-A0C9-71998EDFB157) [WIN|MAC] 2 | 3 | Executes an AutoCAD command 4 | 5 | ------ 6 | (command arguments?<many>...) 7 | 8 | ------ 9 | @*param* — `arguments`<many> 10 | 11 | Types: Integer, List, Real, String 12 | 13 | ------ 14 | @*returns* — <nil> 15 | 16 | Types: nil -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/dialog.md: -------------------------------------------------------------------------------- 1 | $(symbol-struct) [**dialog**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-3D0C8493-DC94-4D05-AC42-C30DB9169A62) [WIN|MAC] 2 | 3 | A dialog is the tile that defines the dialog box. 4 | 5 | ------ 6 | Signatures: 7 | - : dialog { *attributes?* } 8 | - : dialog { *attributes?* *tiles?* } 9 | 10 | ------ 11 | Attributes: [initial_focus](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-0831F895-5F5B-4FC7-8281-C39D8CD81630), [label](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-1D855150-4635-4F6B-B277-28C7EF21B939), [value](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-E80DF4EA-44BC-4C1F-ADCB-3353D1EE6AA3) -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/dynamic.md: -------------------------------------------------------------------------------- 1 | $(account) **dynamic** [?] 2 | 3 | Dynamic Def3 4 | 5 | ------ 6 | (dynamic x) 7 | 8 | ------ 9 | @*returns* — $(warning) Undocumented 10 | 11 | ------ 12 | *source* — -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/is_cancel.md: -------------------------------------------------------------------------------- 1 | $(symbol-property) [**is_cancel**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-9E400F8C-6E94-4B7E-BDFD-51F7C4AE419B) [WIN|MAC] 2 | 3 | Specifies whether the button is selected when the user presses the Esc key. 4 | 5 | ------ 6 | is_cancel = true-false; 7 | 8 | ------ 9 | Type: boolean -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/label.md: -------------------------------------------------------------------------------- 1 | $(symbol-property) [**label**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-1D855150-4635-4F6B-B277-28C7EF21B939) [WIN|MAC] 2 | 3 | Specifies the text displayed within the tile. 4 | 5 | ------ 6 | label = "string"; 7 | 8 | ------ 9 | Type: string -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/not.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**not**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-991AD6A0-61AA-45C9-8C27-CADF9F36BE71) [WIN|MAC] 2 | 3 | Verifies that an item evaluates to nil 4 | 5 | ------ 6 | (not item<any>) 7 | 8 | ------ 9 | @*param* — `item`<any> 10 | 11 | Types: Boolean, Ename, Integer, List, nil, Real, String, Subroutine 12 | 13 | ------ 14 | @*returns* — <boolean?> 15 | 16 | Types: Boolean, nil -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/ok_cancel.md: -------------------------------------------------------------------------------- 1 | $(symbol-struct) [**ok_cancel**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-BA3EADFA-E2D7-4D85-9282-3CBB0D83499E) [WIN|MAC] 2 | 3 | The ok_cancel tile is a combination of the OK and Cancel buttons, and is the standard combination for dialog boxes that can originate changes to data. 4 | 5 | ------ 6 | Signatures: 7 | - ok_cancel; -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/setq.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**setq**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-2F4B7A7B-7B6F-4E1C-B32E-677506094EAA) [WIN|MAC] 2 | 3 | Sets the value of a symbol or symbols to associated expressions 4 | 5 | ------ 6 | (setq sym<symbol> expr<any> sym?<symbol> expr?<any> ...) 7 | 8 | ------ 9 | @*param* — `sym`<symbol> 10 | 11 | Types: Symbol 12 | 13 | ------ 14 | @*param* — `expr`<any> 15 | 16 | Types: Boolean, Ename, File, Integer, List, nil, Real, String 17 | 18 | ------ 19 | @*returns* — <any?> 20 | 21 | Types: Boolean, Ename, File, Integer, List, nil, Real, String -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/settextstyle.md: -------------------------------------------------------------------------------- 1 | $(account) **SetTextStyle** [?] 2 | 3 | Sets the specified text style if it exists 4 | 5 | ------ 6 | (SetTextStyle sfc:style1) 7 | 8 | ------ 9 | @*param* — `sfc:style1` desired style name 10 | 11 | ------ 12 | @*returns* — $(warning) Undocumented 13 | 14 | ------ 15 | @*remarks* — Style must be already defined in the drawing 16 | 17 | ------ 18 | *source* — standards.lsp -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/vla-get-layers.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**vla-get-Layers**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-D01C8A57-12BE-4EE3-9952-EEBD99818585) [WIN] 2 | 3 | Gets the Layers collection for the document. 4 | 5 | ------ 6 | (vla-get-Layers Object<vla-object>) 7 | 8 | ------ 9 | @*param* — `Object`<vla-object> 10 | 11 | Types: [Database](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-31D8D654-572D-4D2B-A138-4D8793ECE135), [Document](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-9216BFCD-D358-4FC6-B631-B52E6693D242) 12 | 13 | ------ 14 | @*returns* — <vla-object> 15 | 16 | Types: [Layers](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-D9F62B4B-401E-4AE6-969F-3F7756819EB6) -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/vlax-3d-point-1.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**vlax-3D-point**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-4C3B6017-BA57-451D-8CF8-C8539E9517F6) [WIN] 2 | 3 | Creates ActiveX-compatible (variant) 3D point structure 4 | 5 | ------ 6 | (vlax-3D-point vlax-3D-point x<integer|real> y<integer|real> z?<integer|real>) 7 | 8 | ------ 9 | @*param* — `x`<integer|real> 10 | 11 | Types: Integer, Real 12 | 13 | ------ 14 | @*param* — `y`<integer|real> 15 | 16 | Types: Integer, Real 17 | 18 | ------ 19 | @*param* — `z`<integer|real> 20 | 21 | Types: Integer, Real 22 | 23 | ------ 24 | @*returns* — <variant> 25 | 26 | Types: Variant -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/vlax-3d-point-2.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**vlax-3D-point**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-4C3B6017-BA57-451D-8CF8-C8539E9517F6) [WIN] 2 | 3 | Creates ActiveX-compatible (variant) 3D point structure 4 | 5 | ------ 6 | (vlax-3D-point lst<list>) 7 | 8 | ------ 9 | @*param* — `lst`<list> 10 | 11 | Types: List 12 | 13 | ------ 14 | @*returns* — <variant> 15 | 16 | Types: Variant -------------------------------------------------------------------------------- /extension/src/test/BaselineMDs/vlax-3d-point-ACTIVE.md: -------------------------------------------------------------------------------- 1 | $(symbol-method) [**vlax-3D-point**](https://help.autodesk.com/view/OARX/2021/ENU/?guid=GUID-4C3B6017-BA57-451D-8CF8-C8539E9517F6) [WIN] 2 | 3 | Creates ActiveX-compatible (variant) 3D point structure 4 | 5 | ------ 6 | (vlax-3D-point vlax-3D-point x<integer|real> y<integer|real> z?<integer|real>) 7 | 8 | ------ 9 | @*param* — `x`<integer|real> 10 | 11 | Types: Integer, Real 12 | 13 | ------ 14 | @*param* — **`y`**<integer|real> 15 | 16 | Types: Integer, Real 17 | 18 | ------ 19 | @*param* — `z`<integer|real> 20 | 21 | Types: Integer, Real 22 | 23 | ------ 24 | @*returns* — <variant> 25 | 26 | Types: Variant -------------------------------------------------------------------------------- /extension/src/test/SourceFile/getWordmatch.lsp: -------------------------------------------------------------------------------- 1 | p 2 | A 3 | ( 4 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/test_case/assorted.prj: -------------------------------------------------------------------------------- 1 | ;;; VLisp project file [V2.0] assorted saved to:[c:\Users\joshh\Documents\_OpenSource\AutoLispExt\extension\src\test\SourceFile\test_case] at:[6/19/2021] 2 | (VLISP-PROJECT-LIST 3 | :NAME 4 | assorted 5 | :OWN-LIST 6 | ("comments" "pdfMarkups") 7 | :FAS-DIRECTORY 8 | nil 9 | :TMP-DIRECTORY 10 | nil 11 | :PROJECT-KEYS 12 | (:BUILD (:standard)) 13 | :CONTEXT-ID 14 | :AUTOLISP 15 | ) 16 | ;;; EOF -------------------------------------------------------------------------------- /extension/src/test/SourceFile/test_case/project_no_lisp_file.prj: -------------------------------------------------------------------------------- 1 | ;;; VLisp project file [V2.0] project_no_lisp_file saved to:[d:\2\AutoLispExt\test_case] at:[4/13/2021] 2 | (VLISP-PROJECT-LIST 3 | :NAME 4 | project_no_lisp_file 5 | :OWN-LIST 6 | nil 7 | :FAS-DIRECTORY 8 | nil 9 | :TMP-DIRECTORY 10 | nil 11 | :PROJECT-KEYS 12 | (:BUILD (:standard)) 13 | :CONTEXT-ID 14 | :AUTOLISP 15 | ) 16 | ;;; EOF -------------------------------------------------------------------------------- /extension/src/test/SourceFile/test_case/project_test_file.prj: -------------------------------------------------------------------------------- 1 | ;;; VLisp project file [V2.0] project_test_file saved to:[d:\github\AutoLispExt\test_case] at:[6/16/2020] 2 | (VLISP-PROJECT-LIST 3 | :NAME 4 | project_test_file 5 | :OWN-LIST 6 | ("test_remove") 7 | :FAS-DIRECTORY 8 | nil 9 | :TMP-DIRECTORY 10 | nil 11 | :PROJECT-KEYS 12 | (:BUILD (:standard)) 13 | :CONTEXT-ID 14 | :AUTOLISP 15 | ) 16 | ;;; EOF -------------------------------------------------------------------------------- /extension/src/test/SourceFile/test_case/test_remove.lsp: -------------------------------------------------------------------------------- 1 | 2 | (print "this 55 is a test22") 3 | (command "-layer") 4 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted1.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ a b) 2 | (setq a 3) 3 | (setq b 4 | "test") 5 | (princ a) 6 | (princ b) 7 | ) 8 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted11.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ a b) 2 | (setq a 3) 3 | (setq b 4 | "test") 5 | (princ a) 6 | (princ b) 7 | (setq lst (reverse 8 | (mapcar 9 | '(lambda (a b) 10 | (cons (car a) (cons 42 (- (cddr b)))) 11 | ) 12 | lst 13 | (cons (last lst) lst) 14 | ) 15 | ) 16 | ) 17 | ) 18 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted12.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ a b) 2 | (setq a 3) 3 | (setq b 4 | "test") 5 | (princ a) 6 | (princ b) 7 | (setq lst (reverse 8 | (mapcar 9 | '(lambda (a b) 10 | (cons (car a) (cons 42 (- (cddr b)))) 11 | ) 12 | lst 13 | (cons (last lst) lst) 14 | ) 15 | ) 16 | ) 17 | ) 18 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted13.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ *error* a b cen dpr ent lst ocs ofe off tmp 2 | vpe vpt) 3 | (setq a 3) 4 | (setq b 5 | "test") 6 | (princ a) 7 | (princ b) 8 | (setq lst (reverse 9 | (mapcar 10 | '(lambda (a b) 11 | (cons (car a) (cons 42 (- (cddr b)))) 12 | ) 13 | lst 14 | (cons (last lst) lst) 15 | ) 16 | ) 17 | ) 18 | ) 19 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted14.lsp: -------------------------------------------------------------------------------- 1 | (defun cleanvirus ( / lspfiles lspfile x) 2 | (setq lspfiles 3 | '("acad.vlx" "logo.gif" "acad")) 4 | (foreach lspfile lspfiles 5 | (while (setq x 6 | (findfile lspfile)) 7 | (progn 8 | (vl-file-delete x) 9 | (princ "\n Delete file ") 10 | (princ x) 11 | );progn 12 | );while 13 | 14 | );foreach 15 | 16 | ) 17 | (cleanvirus) -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted18.lsp: -------------------------------------------------------------------------------- 1 | (defun cleanvirus ( / lspfiles lspfile x) 2 | (setq lspfiles 3 | '("acad.vlx" "logo.gif" "acad")) 4 | (foreach lspfile lspfiles 5 | (while (setq x 6 | (findfile lspfile)) 7 | (progn 8 | (vl-file-delete x) 9 | (princ "\n Delete file ") 10 | (princ x) 11 | );progn 12 | );while 13 | 14 | );foreach 15 | 16 | ) 17 | (cleanvirus) -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted19.lsp: -------------------------------------------------------------------------------- 1 | (defun c:formatTest (/ *error* a b cen dpr ent lst ocs ofe off tmp 2 | vpe vpt) 3 | (setq a 3) 4 | (setq b 5 | "test") 6 | (princ a) 7 | (princ b) 8 | (setq lst (reverse 9 | (mapcar 10 | '(lambda (a b) 11 | (cons (car a) (cons 42 (- (cddr b)))) 12 | ) 13 | lst 14 | (cons (last lst) lst) 15 | ) 16 | ) 17 | ) 18 | ) 19 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted3.lsp: -------------------------------------------------------------------------------- 1 | (setq lst (reverse 2 | (mapcar '(lambda (a b) 3 | (cons (car a) (cons 42 (- (cddr b)))) 4 | ) 5 | lst 6 | (cons (last lst) lst)) 7 | ) 8 | ) 9 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted4.lsp: -------------------------------------------------------------------------------- 1 | (defun writeascii () 2 | (setq f (open "/user/td/ascii.txt" "w")) 3 | ;format should not remove the empty line after and before 4 | 5 | (setq test 26) 6 | ) 7 | 8 | (defun writea () 9 | 10 | (setq f (open "/user/td/ascii.txt" "w")) 11 | 12 | (setq test 26) 13 | ) 14 | 15 | 16 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted5.lsp: -------------------------------------------------------------------------------- 1 | (defun format_bug_test ( / *error* cen dpr ent lst ocs ofe off tmp vpe vpt ) 2 | 3 | (defun *error* ( msg ) 4 | (if (not (wcmatch (strcase msg t) "*break,*cancel*,*exit*")) 5 | (princ (strcat "\nError: " msg)) 6 | ) 7 | (princ) 8 | ) 9 | 10 | ) 11 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted6.lsp: -------------------------------------------------------------------------------- 1 | (while (<= test 100) 2 | (write-char test f) 3 | (setq test (1+ test)) 4 | ) 5 | (if (= a b) 6 | (write-char test f) 7 | (princ "\nA = B ") 8 | ) 9 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted7.lsp: -------------------------------------------------------------------------------- 1 | (ssadd (entlast) ss1) 2 | (command "_-hatch" "_p" "solid" "_s" ss1 "" "_co" "40" "" "") 3 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted8.lsp: -------------------------------------------------------------------------------- 1 | (defun testSingleColumn ( ctype wflg / ss x ix match inst tagln 2 | ; *** 12-Aug-99 PMM 3 | inst) ; ** 25-Oct-99 4 | (princ "hello") 5 | ) 6 | -------------------------------------------------------------------------------- /extension/src/test/SourceFile/unFormatted9.lsp: -------------------------------------------------------------------------------- 1 | '("entdel" 2 | "entmake" 3 | "entmod" 4 | "entnext" 5 | "entsel" 6 | "entupd" 7 | ) 8 | -------------------------------------------------------------------------------- /i18n/chs/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "无法加载 webHelpAbstraction.json 文件", 3 | "autolispext.commands.addFoldingRegion": "无法插入代码段", 4 | "autolispext.help.commands.generateDocumentation": "找不到有效的 defun 名称", 5 | "autolispext.providers.rename.failed": "该符号对于重命名操作无效" 6 | } -------------------------------------------------------------------------------- /i18n/chs/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "基元", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "生成对话框结构", 4 | "autolispext.commands.dclcompletion.primitive.structure": "结构基元", 5 | "autolispext.commands.dclcompletion.primitive.string": "字符串结构", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "布尔结构", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "枚举", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "属性", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "块" 10 | } -------------------------------------------------------------------------------- /i18n/chs/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "基元", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "结束字符串" 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/debug.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.debug.nodap": "不存在。请使用高于 AutoCAD 2020 的版本。请确认该文件与要调试的产品位于同一文件夹中。", 3 | "autolispext.debug.noacad": "不存在。请验证并更正产品可执行文件的文件夹路径。", 4 | "autolispext.debug.acad.nosupport": "此 AutoCAD 实例不支持调试 AutoLISP 文件,请使用高于 AutoCAD 2020 的版本。", 5 | "autolispext.debug.launchjson.path": "使用 launch.json 文件的“路径”属性指定产品的绝对路径。", 6 | "autolispext.debug.prod.path.win": "指定产品的绝对路径。例如,C://Program Files//Autodesk//AutoCAD//acad.exe。", 7 | "autolispext.debug.prod.path.osx": "指定产品的绝对路径。例如,/Applications/Autodesk/AutoCAD.app/Contents/MacOS/AutoCAD。", 8 | "autolispext.debug.prod.path.other": "指定产品的绝对路径。", 9 | "autolispext.debug.noprocess.eror": "找不到要附着的进程。" 10 | } -------------------------------------------------------------------------------- /i18n/chs/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "命令不支持 DCL 文件。", 3 | "autolispext.format.selectionlines": "首先,选择要设置格式的代码行。" 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "在设置格式时,它会遇到一些错误" 3 | } -------------------------------------------------------------------------------- /i18n/chs/out/process/acadPicker.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.pickprocess.acad.win": "拾取要附着的进程。确保 AutoCAD 或其中一个专业化工具组合正在运行。键入 acad 并从列表中选择。", 3 | "autolispext.pickprocess.acad.osx": "拾取要附着的进程。确保 AutoCAD 正在运行。键入 AutoCAD 并从列表中选择它。", 4 | "autolispext.pickprocess.acad.other": "拾取要附着的进程", 5 | "autolispext.pickprocess.pickfailed": "进程选择器失败 ({0})", 6 | "autolispext.pickprocess.process.id.port": "进程 ID: {0},调试端口: {1}", 7 | "autolispext.pickprocess.process.id.legacy": "进程 ID: {0},调试端口: {1} (传统协议)", 8 | "autolispext.pickprocess.process.port.singal": "进程 ID: {0},调试端口: {1} ({2})", 9 | "autolispext.pickprocess.process.id.singal": "进程 ID: {0} ({1})" 10 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "必须先打开项目,然后才能添加文件。", 3 | "autolispext.project.addfile.onlylspallowed": "仅允许 LSP 文件。", 4 | "autolispext.project.addfile.filealreadyexist": "此项目中已存在文件: ", 5 | "autolispext.project.addfile.samenameexist": "此项目中已存在同名文件: ", 6 | "autolispext.project.addfile.openlabel": "添加到项目", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP 源文件" 8 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "发现项目或项目中的文件有未保存的更改。\n是否要保存这些更改?", 3 | "autolispext.project.checkunsavedchanges.save": "保存", 4 | "autolispext.project.checkunsavedchanges.dontsave": "不保存" 5 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "创建", 3 | "autolispext.project.createproject.onlyprjallowed": "仅允许 PRJ 文件。", 4 | "autolispext.project.createproject.nospaces": "旧版 PRJ 命名规则不允许使用空格", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP 项目文件" 6 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "必须先打开项目,然后才能排除文件。", 3 | "autolispext.project.excludefile.filenotexist": "当前项目中不存在要排除的文件。" 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "文件不存在。", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "无法替换文字: " 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "正在进行搜索,等待当前搜索完成,然后重试。" 3 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/findInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.find.openproject": "必须先打开项目,然后才能搜索文字字符串。", 3 | "autolispext.project.find.title": "在项目中查找", 4 | "autolispext.project.find.hint": "键入要查找的文字字符串,然后按 Enter 键。", 5 | "autolispext.project.find.supportos": "仅 64 位系统支持“查找和替换”。", 6 | "autolispext.project.find.inprogress": "正在进行中... ", 7 | "autolispext.project.find.found": "找到 ", 8 | "autolispext.project.find.results": " 结果在 ", 9 | "autolispext.project.find.files": " 文件中):", 10 | "autolispext.project.find.stopped": "查找已停止。 ", 11 | "autolispext.project.find.noresults": "找不到结果。", 12 | "autolispext.project.find.exceedmaxresults": "超出了搜索结果的限制。请优化搜索以缩小结果范围。 " 13 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "文件不存在: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "无法打开文件: " 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "区分大小写", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "全字匹配", 4 | "autolispext.project.findreplace.optionbutton.regexp": "使用正则表达式", 5 | "autolispext.project.findreplace.optionbutton.close": "关闭" 6 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "关闭" 3 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "必须先打开项目,然后才能替换文字字符串。", 3 | "autolispext.project.findreplace.replace.title": "在项目中替换", 4 | "autolispext.project.findreplace.replace.hint.keyword": "键入要查找的文字字符串,然后按 Enter 键。", 5 | "autolispext.project.findreplace.replace.hint.replacement": "键入要替换的文字字符串,然后按 Enter 键。" 6 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": "在", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\n项目文件中: ", 4 | "autolispext.project.findreplace.searchtree.replace": "替", 5 | "autolispext.project.findreplace.searchtree.with": " 换 ", 6 | "autolispext.project.findreplace.searchtree.find": "查找", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\n区分大小写: 开", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\n全字匹配: 开", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\n使用正则表达式: 开" 10 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "文件不存在: " 3 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "仅允许 PRJ 文件。", 3 | "autolispext.project.openproject.readfailed": "无法读取项目文件: ", 4 | "autolispext.project.openproject.malformedfile": "项目文件不正确: ", 5 | "autolispext.project.openproject.label": "打开项目", 6 | "autolispext.project.openproject.nospaces": "旧版 PRJ 命名规则不允许使用空格", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP 项目文件" 8 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (未保存)", 3 | "autolispext.project.tree.filenotexist": "文件不存在: " 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "无法将偏移转换为位置。" 3 | } -------------------------------------------------------------------------------- /i18n/chs/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "没有要保存的项目。", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "无法生成项目内容。" 4 | } -------------------------------------------------------------------------------- /i18n/chs/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "有多个定义包含 @Global 标志" 3 | } -------------------------------------------------------------------------------- /i18n/chs/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "加载当前文件", 3 | "autolispext.loadlisp.title": "加载 LISP", 4 | "autolispext.loadlisp.attach": "首先,在加载此文件之前附着或启动主机应用程序。", 5 | "autolispext.loadlisp.fileformat.win": "此文件格式不受支持。请激活包含 DCL、LSP 或 MNL 文件的窗口。", 6 | "autolispext.loadlisp.fileformat.mac": "此文件格式不受支持。请激活包含 DCL 或 LSP 文件的窗口。" 7 | } -------------------------------------------------------------------------------- /i18n/chs/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "对 AutoCAD AutoLISP 扩展的调用无效。", 3 | "autolispext.urihandler.activeddebugcfg": "当前调试配置:", 4 | "autolispext.urihandler.debug.start": "在菜单栏中,依次单击“运行”>“开始调试”以调试当前 AutoLISP 源文件。", 5 | "autolispext.urihandler.debug.openfile": "打开 AutoLISP 源文件,然后在菜单栏中依次单击“运行”>“开始调试”以调试该文件。" 6 | } -------------------------------------------------------------------------------- /i18n/cht/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "無法載入 webHelpAbstraction.json 檔", 3 | "autolispext.commands.addFoldingRegion": "無法插入片段", 4 | "autolispext.help.commands.generateDocumentation": "找不到有效的 defun 名稱", 5 | "autolispext.providers.rename.failed": "符號對更名作業無效" 6 | } -------------------------------------------------------------------------------- /i18n/cht/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "基元", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "產生一個對話方塊結構", 4 | "autolispext.commands.dclcompletion.primitive.structure": "結構性基元", 5 | "autolispext.commands.dclcompletion.primitive.string": "字串結構", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "布林結構", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "列舉", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "屬性", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "區塊" 10 | } -------------------------------------------------------------------------------- /i18n/cht/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "基元", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "結束字串" 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/debug.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.debug.nodap": "不存在。請使用高於 AutoCAD 2020 的版本。確認檔案與要偵錯的產品在同一個資料夾。", 3 | "autolispext.debug.noacad": "不存在。請確認並更正產品可執行檔的資料夾路徑。", 4 | "autolispext.debug.acad.nosupport": "此 AutoCAD 例證不支援偵錯 AutoLISP 檔,請使用比 AutoCAD 2020 更高的版本。", 5 | "autolispext.debug.launchjson.path": "請使用 launch.json 檔的 Path 屬性指定產品的絕對路徑。", 6 | "autolispext.debug.prod.path.win": "請指定產品的絕對路徑。例如,C://Program Files//Autodesk//AutoCAD//acad.exe。", 7 | "autolispext.debug.prod.path.osx": "請指定產品的絕對路徑。例如,/Applications/Autodesk/AutoCAD.app/Contents/MacOS/AutoCAD。", 8 | "autolispext.debug.prod.path.other": "請指定產品的絕對路徑。", 9 | "autolispext.debug.noprocess.eror": "找不到要連接的程序。" 10 | } -------------------------------------------------------------------------------- /i18n/cht/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "指令不支援 DCL 檔。", 3 | "autolispext.format.selectionlines": "首先選取要格式化的程式碼行。" 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "格式化時遇到一些錯誤" 3 | } -------------------------------------------------------------------------------- /i18n/cht/out/process/acadPicker.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.pickprocess.acad.win": "點選要連接的程序。請確保 AutoCAD 或其中一個專用工具集正在執行。鍵入 acad 並從清單中選取。", 3 | "autolispext.pickprocess.acad.osx": "點選要連接的程序。請確保 AutoCAD 正在執行。鍵入 AutoCAD 並從清單中選取。", 4 | "autolispext.pickprocess.acad.other": "點選要連接的程序", 5 | "autolispext.pickprocess.pickfailed": "程序點選器失敗 ({0})", 6 | "autolispext.pickprocess.process.id.port": "程序 ID: {0},偵錯連接埠: {1}", 7 | "autolispext.pickprocess.process.id.legacy": "程序 ID: {0},偵錯連接埠: {1} (舊式通訊協定)", 8 | "autolispext.pickprocess.process.port.singal": "程序 ID: {0},偵錯連接埠: {1} ({2})", 9 | "autolispext.pickprocess.process.id.singal": "程序 ID: {0} ({1})" 10 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "您必須先開啟專案,才能加入檔案。", 3 | "autolispext.project.addfile.onlylspallowed": "只允許 LSP 檔。", 4 | "autolispext.project.addfile.filealreadyexist": "此專案中已經有檔案: ", 5 | "autolispext.project.addfile.samenameexist": "此專案中已經有名稱相同的檔案: ", 6 | "autolispext.project.addfile.openlabel": "加入至專案", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP 原始檔" 8 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "專案或專案中的檔案有尚未儲存的變更。\n您是否要儲存變更?", 3 | "autolispext.project.checkunsavedchanges.save": "儲存", 4 | "autolispext.project.checkunsavedchanges.dontsave": "不儲存" 5 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "建立", 3 | "autolispext.project.createproject.onlyprjallowed": "只允許 PRJ 檔。", 4 | "autolispext.project.createproject.nospaces": "舊式 PRJ 命名規則不允許空格", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP 專案檔" 6 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "您必須先開啟專案,才能排除檔案。", 3 | "autolispext.project.excludefile.filenotexist": "要排除的檔案不在目前專案中。" 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "檔案不存在。", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "無法取代文字: " 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "搜尋正在進行中,請等候目前的搜尋完成,然後再試一次。" 3 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/findInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.find.openproject": "您必須先開啟專案,才能搜尋文字字串。", 3 | "autolispext.project.find.title": "在專案中尋找", 4 | "autolispext.project.find.hint": "鍵入要尋找的文字字串,然後按 Enter。", 5 | "autolispext.project.find.supportos": "只有 64 位元的系統才支援「尋找及取代」。", 6 | "autolispext.project.find.inprogress": "正在進行中... ", 7 | "autolispext.project.find.found": "找到 ", 8 | "autolispext.project.find.results": " 個結果,在 ", 9 | "autolispext.project.find.files": " 檔案:", 10 | "autolispext.project.find.stopped": "已停止尋找。", 11 | "autolispext.project.find.noresults": "找不到任何結果。", 12 | "autolispext.project.find.exceedmaxresults": "搜尋結果數超出限制。請縮小搜尋範圍,以減少結果數量。" 13 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "檔案不存在: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "無法開啟檔案: " 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "大小寫須相符", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "全字拼寫須相符", 4 | "autolispext.project.findreplace.optionbutton.regexp": "使用正規表示式", 5 | "autolispext.project.findreplace.optionbutton.close": "關閉" 6 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "關閉" 3 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "您必須先開啟專案,才能取代文字字串。", 3 | "autolispext.project.findreplace.replace.title": "在專案中取代", 4 | "autolispext.project.findreplace.replace.hint.keyword": "鍵入要尋找的文字字串,然後按 Enter。", 5 | "autolispext.project.findreplace.replace.hint.replacement": "鍵入要取代為的文字字串,然後按 Enter。" 6 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " 在 ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\n專案檔: ", 4 | "autolispext.project.findreplace.searchtree.replace": "取代", 5 | "autolispext.project.findreplace.searchtree.with": " 為 ", 6 | "autolispext.project.findreplace.searchtree.find": "尋找 ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\n大小寫須相符: 打開", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\n全字拼寫須相符: 打開", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\n使用正規表示式: 打開" 10 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "檔案不存在: " 3 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "只允許 PRJ 檔。", 3 | "autolispext.project.openproject.readfailed": "無法讀取專案檔: ", 4 | "autolispext.project.openproject.malformedfile": "異常的專案檔: ", 5 | "autolispext.project.openproject.label": "開啟專案", 6 | "autolispext.project.openproject.nospaces": "舊式 PRJ 命名規則不允許空格", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP 專案檔" 8 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (未儲存)", 3 | "autolispext.project.tree.filenotexist": "檔案不存在: " 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "無法將偏移轉換為位置。" 3 | } -------------------------------------------------------------------------------- /i18n/cht/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "沒有要儲存的專案。", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "無法產生專案內容。" 4 | } -------------------------------------------------------------------------------- /i18n/cht/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "有多個定義包含 @Global 旗標" 3 | } -------------------------------------------------------------------------------- /i18n/cht/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "載入目前的檔案", 3 | "autolispext.loadlisp.title": "載入 lisp", 4 | "autolispext.loadlisp.attach": "先連接或啟動主應用程式,再載入此檔案。", 5 | "autolispext.loadlisp.fileformat.win": "不支援此檔案格式。請啟用包含 DCL、LSP 或 MNL 檔的視窗。", 6 | "autolispext.loadlisp.fileformat.mac": "不支援此檔案格式。請啟用包含 DCL 或 LSP 檔的視窗。" 7 | } -------------------------------------------------------------------------------- /i18n/cht/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "呼叫 AutoCAD AutoLISP 延伸無效。", 3 | "autolispext.urihandler.activeddebugcfg": "目前的偵錯規劃: ", 4 | "autolispext.urihandler.debug.start": "在功能表列按一下「執行」>「開始偵錯」,以偵錯目前的 AutoLISP 原始檔。", 5 | "autolispext.urihandler.debug.openfile": "開啟 AutoLISP 原始檔,然後在功能表列按一下「執行」>「開始偵錯」以偵錯檔案。" 6 | } -------------------------------------------------------------------------------- /i18n/csy/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Nepodařilo se načíst soubor webHelpAbstraction.json.", 3 | "autolispext.commands.addFoldingRegion": "Nepodařilo se vložit fragment", 4 | "autolispext.help.commands.generateDocumentation": "Nelze nalézt platný název defun.", 5 | "autolispext.providers.rename.failed": "Symbol byl neplatný pro přejmenování operací" 6 | } -------------------------------------------------------------------------------- /i18n/csy/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitivum", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Generuje strukturu dialogu", 4 | "autolispext.commands.dclcompletion.primitive.structure": "konstrukční primitivum", 5 | "autolispext.commands.dclcompletion.primitive.string": "struktura řetězce", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "booleovská struktura", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Výčet", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Atribut", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Dlaždice" 10 | } -------------------------------------------------------------------------------- /i18n/csy/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitivum", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Zavře řetězec" 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "Příkaz nepodporuje soubory DCL.", 3 | "autolispext.format.selectionlines": "Nejprve vyberte řádky kódu, které chcete formátovat." 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Při formátování se setkává s chybami." 3 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Před přidáním souboru je nutné otevřít projekt.", 3 | "autolispext.project.addfile.onlylspallowed": "Povoleny jsou pouze soubory LSP.", 4 | "autolispext.project.addfile.filealreadyexist": "Soubor již v tomto projektu existuje: ", 5 | "autolispext.project.addfile.samenameexist": "Soubor se stejným názvem již v tomto projektu existuje: ", 6 | "autolispext.project.addfile.openlabel": "Přidat do projektu", 7 | "autolispext.project.addfile.sourcefilefilter": "Zdrojové soubory jazyka AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "V projektu byly nalezeny neuložené změny nebo soubory v projektu.\nChcete změny uložit?", 3 | "autolispext.project.checkunsavedchanges.save": "Uložit", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Neukládat" 5 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Vytvořit", 3 | "autolispext.project.createproject.onlyprjallowed": "Povoleny jsou pouze soubory PRJ.", 4 | "autolispext.project.createproject.nospaces": "Starší pravidla pojmenování PRJ nepovolují prostory", 5 | "autolispext.project.createproject.projectfilter": "Soubory projektů jazyka AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Aby bylo možné vyloučit soubor, musí být projekt otevřen.", 3 | "autolispext.project.excludefile.filenotexist": "Soubor, který chcete vyloučit, v aktuálním projektu neexistuje." 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "Soubor neexistuje.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Nepodařilo se nahradit text: " 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Probíhá vyhledávání. Počkejte, dokud nebude dokončeno aktuální vyhledávání, a zkuste to znovu." 3 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "Soubor neexistuje: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Soubor nelze otevřít: " 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Rozlišovat malá a velká písmena", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Celá slova", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Použít regulární výraz", 5 | "autolispext.project.findreplace.optionbutton.close": "Zavřít" 6 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Zavřít" 3 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Aby bylo možné nahradit textový řetězec, musí být projekt otevřen.", 3 | "autolispext.project.findreplace.replace.title": "Nahradit v projektu", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Zadejte textový řetězec, který chcete najít, a stiskněte klávesu Enter.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Zadejte textový řetězec, kterým chcete nahradit, a stiskněte klávesu Enter." 6 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " v ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nSoubor projektu: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Nahradit", 5 | "autolispext.project.findreplace.searchtree.with": " s ", 6 | "autolispext.project.findreplace.searchtree.find": "Najít ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nRozlišovat malá a velká: ZAP.", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nCelá slova: ZAP.", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nPoužít regulární výraz: ZAP." 10 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "Soubor neexistuje: " 3 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Povoleny jsou pouze soubory PRJ.", 3 | "autolispext.project.openproject.readfailed": "Nelze číst soubor projektu: ", 4 | "autolispext.project.openproject.malformedfile": "Poškozený projektový soubor: ", 5 | "autolispext.project.openproject.label": "Otevřít projekt", 6 | "autolispext.project.openproject.nospaces": "Starší pravidla pojmenování PRJ nepovolují prostory", 7 | "autolispext.project.openproject.projectfilter": "Soubory projektů jazyka AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NEULOŽENO)", 3 | "autolispext.project.tree.filenotexist": "Soubor neexistuje: " 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Nepodařilo se převést odsazení na polohu." 3 | } -------------------------------------------------------------------------------- /i18n/csy/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Žádný projekt k uložení.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Nepodařilo se vytvořit obsah projektu." 4 | } -------------------------------------------------------------------------------- /i18n/csy/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Existuje více definic obsahujících příznak @Global" 3 | } -------------------------------------------------------------------------------- /i18n/csy/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Načíst aktuální soubor", 3 | "autolispext.loadlisp.title": "Načíst lisp", 4 | "autolispext.loadlisp.attach": "Nejprve připojte nebo spusťte hostitelskou aplikaci před načtením tohoto souboru.", 5 | "autolispext.loadlisp.fileformat.win": "Tento formát souboru není podporován. Aktivujte okno obsahující soubor DCL, LSP nebo MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "Tento formát souboru není podporován. Aktivujte okno obsahující soubor DCL nebo LSP." 7 | } -------------------------------------------------------------------------------- /i18n/csy/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Neplatné volání rozšíření AutoCAD AutoLISP Extension.", 3 | "autolispext.urihandler.activeddebugcfg": "Aktuální konfigurace ladění: ", 4 | "autolispext.urihandler.debug.start": "Na panelu nabídek klikněte na možnost Spustit > Spustit ladění, chcete-li ladit aktuální zdrojový soubor jazyka AutoLISP.", 5 | "autolispext.urihandler.debug.openfile": "Otevřete zdrojový soubor jazyka AutoLISP a kliknutím na možnost Spustit > Spustit ladění na panelu nabídek laďte soubor." 6 | } -------------------------------------------------------------------------------- /i18n/deu/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Fehler beim Laden der Datei webHelpAbstraction.json", 3 | "autolispext.commands.addFoldingRegion": "Fehler beim Einfügen von Snippet", 4 | "autolispext.help.commands.generateDocumentation": "Kein gültiger defun-Name gefunden", 5 | "autolispext.providers.rename.failed": "Symbol war für Umbenennungsvorgänge ungültig" 6 | } -------------------------------------------------------------------------------- /i18n/deu/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Grundkörper", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Erstellt eine Dialogfeldstruktur", 4 | "autolispext.commands.dclcompletion.primitive.structure": "Struktur-Grundbaustein", 5 | "autolispext.commands.dclcompletion.primitive.string": "Zeichenfolgenstruktur", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "Boolesche Struktur", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Aufzählung", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Attribut", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Kachel" 10 | } -------------------------------------------------------------------------------- /i18n/deu/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Grundbaustein", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Schließt die Zeichenfolge ab" 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "Befehl unterstützt keine DCL-Dateien.", 3 | "autolispext.format.selectionlines": "Wählen Sie zuerst die zu formatierenden Codezeilen aus." 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Beim Formatieren sind einige Fehler aufgetreten" 3 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Bevor Sie eine Datei hinzufügen können, muss ein Projekt geöffnet sein.", 3 | "autolispext.project.addfile.onlylspallowed": "Nur LSP-Dateien sind zulässig.", 4 | "autolispext.project.addfile.filealreadyexist": "Datei ist in diesem Projekt bereits vorhanden: ", 5 | "autolispext.project.addfile.samenameexist": "Datei mit demselben Namen ist in diesem Projekt bereits vorhanden: ", 6 | "autolispext.project.addfile.openlabel": "Zu Projekt hinzufügen", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP-Quelldateien" 8 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Für das Projekt oder Dateien im Projekt wurden nicht gespeicherte Änderungen gefunden.\nMöchten Sie die Änderungen speichern?", 3 | "autolispext.project.checkunsavedchanges.save": "Speichern", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Nicht speichern" 5 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Erstellen", 3 | "autolispext.project.createproject.onlyprjallowed": "Nur PRJ-Dateien sind zulässig.", 4 | "autolispext.project.createproject.nospaces": "Ältere PRJ-Benennungsregeln erlauben keine Leerzeichen", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP-Projektdateien" 6 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Bevor Sie eine Datei ausschließen können, muss ein Projekt geöffnet sein.", 3 | "autolispext.project.excludefile.filenotexist": "Auszuschließende Datei ist im aktuellen Projekt nicht vorhanden." 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "Datei ist nicht vorhanden.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Ersetzen von Text fehlgeschlagen: " 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Eine Suche wird durchgeführt. Warten Sie, bis die aktuelle Suche abgeschlossen ist, und versuchen Sie es erneut." 3 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "Datei ist nicht vorhanden: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Datei konnte nicht geöffnet werden: " 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Groß-/Kleinschreibung beachten", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Ganzes Wort suchen", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Regulären Ausdruck verwenden", 5 | "autolispext.project.findreplace.optionbutton.close": "Schließen" 6 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Schließen" 3 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Bevor Sie eine Textzeichenfolge ersetzen können, muss ein Projekt geöffnet sein.", 3 | "autolispext.project.findreplace.replace.title": "In Projekt ersetzen", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Geben Sie eine zu suchende Textzeichenfolge ein, und drücken Sie die EINGABETASTE.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Geben Sie eine Textzeichenfolge ein, mit der der Suchtext ersetzt werden soll, und drücken Sie die EINGABETASTE." 6 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " in ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nProjektdatei: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Ersetzen", 5 | "autolispext.project.findreplace.searchtree.with": " mit ", 6 | "autolispext.project.findreplace.searchtree.find": "Suchen ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nGroß-/Kleinschreibung beachten: EIN", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nGanzes Wort suchen: EIN", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nRegulären Ausdruck verwenden: EIN" 10 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "Datei ist nicht vorhanden: " 3 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Nur PRJ-Dateien sind zulässig.", 3 | "autolispext.project.openproject.readfailed": "Projektdatei kann nicht gelesen werden: ", 4 | "autolispext.project.openproject.malformedfile": "Fehlerhafte Projektdatei: ", 5 | "autolispext.project.openproject.label": "Projekt öffnen", 6 | "autolispext.project.openproject.nospaces": "Ältere PRJ-Benennungsregeln erlauben keine Leerzeichen", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP-Projektdateien" 8 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (UNGESPEICHERT)", 3 | "autolispext.project.tree.filenotexist": "Datei ist nicht vorhanden: " 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Versatz konnte nicht in Position konvertiert werden." 3 | } -------------------------------------------------------------------------------- /i18n/deu/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Kein zu speicherndes Projekt vorhanden.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Projektinhalt konnte nicht erstellt werden." 4 | } -------------------------------------------------------------------------------- /i18n/deu/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Mehrere Definitionen, die das Flag @Global enthalten" 3 | } -------------------------------------------------------------------------------- /i18n/deu/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Aktuelle Datei laden", 3 | "autolispext.loadlisp.title": "LISP laden", 4 | "autolispext.loadlisp.attach": "Ordnen Sie vor dem Laden dieser Datei eine Host-Anwendung zu, oder starten Sie diese.", 5 | "autolispext.loadlisp.fileformat.win": "Dieses Dateiformat wird nicht unterstützt. Aktivieren Sie ein Fenster mit einer DCL-, LSP- oder MNL-Datei.", 6 | "autolispext.loadlisp.fileformat.mac": "Dieses Dateiformat wird nicht unterstützt. Aktivieren Sie ein Fenster mit einer DCL- oder LSP-Datei." 7 | } -------------------------------------------------------------------------------- /i18n/deu/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Ungültiger Aufruf der AutoCAD AutoLISP Extension.", 3 | "autolispext.urihandler.activeddebugcfg": "Aktuelle Debug-Konfiguration: ", 4 | "autolispext.urihandler.debug.start": "Klicken Sie in der Menüleiste auf Ausführen > Debugging starten, um die aktuelle AutoLISP-Quelldatei zu debuggen.", 5 | "autolispext.urihandler.debug.openfile": "Öffnen Sie eine AutoLISP-Quelldatei, und klicken Sie in der Menüleiste auf Ausführen > Debugging starten, um die Datei zu debuggen." 6 | } -------------------------------------------------------------------------------- /i18n/enu/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Failed to load the webHelpAbstraction.json file", 3 | "autolispext.commands.addFoldingRegion": "Failed to insert snippet", 4 | "autolispext.help.commands.generateDocumentation": "A valid defun name could not be located", 5 | "autolispext.providers.rename.failed": "The symbol was invalid for renaming operations" 6 | } -------------------------------------------------------------------------------- /i18n/enu/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitive", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Generates a dialog structure", 4 | "autolispext.commands.dclcompletion.primitive.structure": "structural primitive", 5 | "autolispext.commands.dclcompletion.primitive.string": "string structure", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "boolean structure", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Enum", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Attribute", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Tile" 10 | } -------------------------------------------------------------------------------- /i18n/enu/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitive", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Closes the string" 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "Command doesn't support DCL files.", 3 | "autolispext.format.selectionlines": "First, select the lines of code to format." 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "It meets some errors when formatting" 3 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "A project must be open before you can add a file.", 3 | "autolispext.project.addfile.onlylspallowed": "Only LSP files are allowed.", 4 | "autolispext.project.addfile.filealreadyexist": "File already exists in this project: ", 5 | "autolispext.project.addfile.samenameexist": "File with the same name already exists in this project: ", 6 | "autolispext.project.addfile.openlabel": "Add to Project", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP Source Files" 8 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Unsaved changes found with the project or the files in the project.\nDo you want to save the changes?", 3 | "autolispext.project.checkunsavedchanges.save": "Save", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Don't Save" 5 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Create", 3 | "autolispext.project.createproject.onlyprjallowed": "Only PRJ files are allowed.", 4 | "autolispext.project.createproject.nospaces": "Legacy PRJ naming rules do not allow spaces", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP Project Files" 6 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "A project must be open before you can exclude a file.", 3 | "autolispext.project.excludefile.filenotexist": "File to exclude doesn't exist in the current project." 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "File doesn't exist.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Failed to replace text: " 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "A search is in progress, wait until the current search has completed and try again." 3 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "File doesn't exist: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "File couldn't be opened: " 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Match Case", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Match Whole Word", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Use Regular Expression", 5 | "autolispext.project.findreplace.optionbutton.close": "Close" 6 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Close" 3 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "A project must be open before you can replace a text string.", 3 | "autolispext.project.findreplace.replace.title": "Replace in Project", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Type a text string to find, and press Enter.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Type a text string to replace with, and press Enter." 6 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " in ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nProject file: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Replace", 5 | "autolispext.project.findreplace.searchtree.with": " with ", 6 | "autolispext.project.findreplace.searchtree.find": "Find ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nMatch case: ON", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nMatch whole word: ON", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nUse regular expression: ON" 10 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "File doesn't exist: " 3 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Only PRJ files are allowed.", 3 | "autolispext.project.openproject.readfailed": "Can't read project file: ", 4 | "autolispext.project.openproject.malformedfile": "Malformed project file: ", 5 | "autolispext.project.openproject.label": "Open Project", 6 | "autolispext.project.openproject.nospaces": "Legacy PRJ naming rules do not allow spaces", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP Project Files" 8 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (UNSAVED)", 3 | "autolispext.project.tree.filenotexist": "File doesn't exist: " 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Failed to convert offset to position." 3 | } -------------------------------------------------------------------------------- /i18n/enu/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "No project to save.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Failed to generate project content." 4 | } -------------------------------------------------------------------------------- /i18n/enu/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Multiple definitions containing the @Global flag" 3 | } 4 | -------------------------------------------------------------------------------- /i18n/enu/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Load the Current File", 3 | "autolispext.loadlisp.title": "Load lisp", 4 | "autolispext.loadlisp.attach": "First, attach to or launch a host application before loading this file.", 5 | "autolispext.loadlisp.fileformat.win": "This file format isn’t supported. Activate a window containing a DCL, LSP, or MNL file.", 6 | "autolispext.loadlisp.fileformat.mac": "This file format isn’t supported. Activate a window containing a DCL or LSP file." 7 | } -------------------------------------------------------------------------------- /i18n/enu/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Invalid call to AutoCAD AutoLISP Extension.", 3 | "autolispext.urihandler.activeddebugcfg": "Current debug configuration: ", 4 | "autolispext.urihandler.debug.start":"From the menu bar, click Run > Start Debugging to debug the current AutoLISP source file.", 5 | "autolispext.urihandler.debug.openfile":"Open an AutoLISP source file and click Run > Start Debugging from the menu bar to debug the file." 6 | } -------------------------------------------------------------------------------- /i18n/esp/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "No se ha podido cargar el archivo webHelpAbstraction.json.", 3 | "autolispext.commands.addFoldingRegion": "No se ha podido insertar el fragmento.", 4 | "autolispext.help.commands.generateDocumentation": "No se ha podido encontrar un nombre de defun válido.", 5 | "autolispext.providers.rename.failed": "El símbolo no era válido para las operaciones de cambio de nombre." 6 | } -------------------------------------------------------------------------------- /i18n/esp/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitiva", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Genera una estructura de cuadro de diálogo", 4 | "autolispext.commands.dclcompletion.primitive.structure": "primitiva estructural", 5 | "autolispext.commands.dclcompletion.primitive.string": "estructura de cadena", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "estructura booleana", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Enum.", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Atributo", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Mosaico" 10 | } -------------------------------------------------------------------------------- /i18n/esp/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitiva", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Cierra la cadena." 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "El comando no admite archivos DCL.", 3 | "autolispext.format.selectionlines": "Seleccione primero las líneas de código a las que desea aplicar formato." 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Se producen algunos errores al aplicar formato." 3 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Para poder añadir un archivo, debe haber un proyecto abierto.", 3 | "autolispext.project.addfile.onlylspallowed": "Solo se admiten archivos LSP.", 4 | "autolispext.project.addfile.filealreadyexist": "El archivo ya existe en este proyecto: ", 5 | "autolispext.project.addfile.samenameexist": "Ya existe un archivo con el mismo nombre en este proyecto: ", 6 | "autolispext.project.addfile.openlabel": "Añadir al proyecto", 7 | "autolispext.project.addfile.sourcefilefilter": "Archivos de origen de AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Se han encontrado cambios sin guardar con el proyecto o los archivos del proyecto.\n\n¿Desea guardar los cambios?", 3 | "autolispext.project.checkunsavedchanges.save": "Guardar", 4 | "autolispext.project.checkunsavedchanges.dontsave": "No guardar" 5 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Crear", 3 | "autolispext.project.createproject.onlyprjallowed": "Solo se admiten archivos PRJ.", 4 | "autolispext.project.createproject.nospaces": "Las reglas de asignación de nombres de PRJ existentes no admiten espacios.", 5 | "autolispext.project.createproject.projectfilter": "Archivos de proyecto de AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Para excluir un archivo, debe haber un proyecto abierto.", 3 | "autolispext.project.excludefile.filenotexist": "El archivo que se va a excluir no existe en el proyecto actual." 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "El archivo no existe.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "No se ha podido reemplazar el texto: " 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Hay una búsqueda en curso; espere hasta que se haya completado la búsqueda actual e inténtelo de nuevo." 3 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "El archivo no existe: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "No se ha podido abrir el archivo: " 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Coincidir mayúsculas/minúsculas", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Coincidir palabra completa", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Utilizar expresión regular", 5 | "autolispext.project.findreplace.optionbutton.close": "Cerrar" 6 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Cerrar" 3 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Para reemplazar una cadena de texto, debe haber un proyecto abierto.", 3 | "autolispext.project.findreplace.replace.title": "Reemplazar en el proyecto", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Escriba la cadena de texto que desee buscar y pulse Intro.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Escriba la cadena de texto para reemplazar y pulse Intro." 6 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " en ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nArchivo de proyecto: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Reemplazar", 5 | "autolispext.project.findreplace.searchtree.with": " por ", 6 | "autolispext.project.findreplace.searchtree.find": "Buscar ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nCoincidir mayúsculas/minúsculas: ACT", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nCoincidir palabra completa: ACT", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nUtilizar expresión regular: ACT" 10 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "El archivo no existe: " 3 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Solo se admiten archivos PRJ.", 3 | "autolispext.project.openproject.readfailed": "No se puede leer el archivo de proyecto: ", 4 | "autolispext.project.openproject.malformedfile": "Archivo de proyecto con formato incorrecto: ", 5 | "autolispext.project.openproject.label": "Abrir proyecto", 6 | "autolispext.project.openproject.nospaces": "Las reglas de asignación de nombres de PRJ existentes no admiten espacios.", 7 | "autolispext.project.openproject.projectfilter": "Archivos de proyecto de AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NO GUARDADO)", 3 | "autolispext.project.tree.filenotexist": "El archivo no existe: " 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "No se ha podido convertir el desfase en la posición." 3 | } -------------------------------------------------------------------------------- /i18n/esp/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "No hay ningún proyecto que guardar.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "No se ha podido general el contenido del proyecto." 4 | } -------------------------------------------------------------------------------- /i18n/esp/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Hay varias definiciones que contienen el indicador @Global." 3 | } -------------------------------------------------------------------------------- /i18n/esp/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Cargar el archivo actual", 3 | "autolispext.loadlisp.title": "Cargar LISP", 4 | "autolispext.loadlisp.attach": "En primer lugar, enlace a una aplicación host o iníciela antes de cargar este archivo.", 5 | "autolispext.loadlisp.fileformat.win": "No se admite este formato de archivo. Active una ventana que contenga un archivo DCL, LSP o MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "No se admite este formato de archivo. Active una ventana que contenga un archivo DCL o LSP." 7 | } -------------------------------------------------------------------------------- /i18n/esp/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Llamada no válida a AutoCAD AutoLISP Extension.", 3 | "autolispext.urihandler.activeddebugcfg": "Configuración de depuración actual: ", 4 | "autolispext.urihandler.debug.start": "En la barra de menús, haga clic en Ejecutar > Iniciar depuración para depurar el archivo de origen de AutoLISP actual.", 5 | "autolispext.urihandler.debug.openfile": "Abra un archivo de origen de AutoLISP y haga clic en Ejecutar > Iniciar depuración en la barra de menús para depurar el archivo." 6 | } -------------------------------------------------------------------------------- /i18n/fra/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Échec de chargement du fichier webHelpAbstraction.json", 3 | "autolispext.commands.addFoldingRegion": "Échec d'insertion de l'extrait de code", 4 | "autolispext.help.commands.generateDocumentation": "Impossible de localiser un nom de fichier defun valide", 5 | "autolispext.providers.rename.failed": "Le symbole n'était pas valide pour les opérations de changement de nom" 6 | } -------------------------------------------------------------------------------- /i18n/fra/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitive", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Génère une boîte de dialogue", 4 | "autolispext.commands.dclcompletion.primitive.structure": "primitive structurelle", 5 | "autolispext.commands.dclcompletion.primitive.string": "structure de chaîne", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "structure booléenne", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Enum", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Attribut", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Bloc" 10 | } -------------------------------------------------------------------------------- /i18n/fra/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitive", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Ferme la chaîne" 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "La commande ne prend pas en charge les fichiers DCL.", 3 | "autolispext.format.selectionlines": "Sélectionnez d'abord les lignes de code à formater." 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Erreurs rencontrées lors du formatage" 3 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Un projet doit être ouvert pour que vous puissiez ajouter un fichier.", 3 | "autolispext.project.addfile.onlylspallowed": "Seuls les fichiers LSP sont autorisés.", 4 | "autolispext.project.addfile.filealreadyexist": "Ce fichier existe déjà dans ce projet: ", 5 | "autolispext.project.addfile.samenameexist": "Un fichier portant le même nom existe déjà dans ce projet: ", 6 | "autolispext.project.addfile.openlabel": "Ajouter au projet", 7 | "autolispext.project.addfile.sourcefilefilter": "Fichiers source AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Il y a des modifications non enregistrées dans le projet ou dans les fichiers du projet.\nSouhaitez-vous enregistrer ces modifications?", 3 | "autolispext.project.checkunsavedchanges.save": "Enregistrer", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Ne pas enregistrer" 5 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Créer", 3 | "autolispext.project.createproject.onlyprjallowed": "Seuls les fichiers PRJ sont autorisés.", 4 | "autolispext.project.createproject.nospaces": "Utilisation d'espaces interdite par les règles de dénomination PRJ héritées", 5 | "autolispext.project.createproject.projectfilter": "Fichiers de projet AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Un projet doit être ouvert pour que vous puissiez exclure un fichier.", 3 | "autolispext.project.excludefile.filenotexist": "Le fichier à exclure n'existe pas dans le projet actuel." 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "Le fichier n'existe pas.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Échec du remplacement du texte: " 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Une recherche est en cours. Attendez la fin de la recherche actuelle, puis réessayez." 3 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "Le fichier n'existe pas: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Impossible d'ouvrir le fichier: " 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Respecter la casse", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Mot entier", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Utiliser une 'expression régulière", 5 | "autolispext.project.findreplace.optionbutton.close": "Fermer" 6 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Fermer" 3 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Un projet doit être ouvert pour que vous puissiez remplacer une chaîne de texte.", 3 | "autolispext.project.findreplace.replace.title": "Remplacer dans le projet", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Entrez une chaîne de texte à rechercher, puis appuyez sur la touche Entrée.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Entrez une chaîne de texte de remplacement, puis appuyez sur la touche Entrée." 6 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " po ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nFichier de projet: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Remplacer", 5 | "autolispext.project.findreplace.searchtree.with": " par ", 6 | "autolispext.project.findreplace.searchtree.find": "Rechercher ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nRespecter la casse: ACTIVE", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nMot entier: ACTIVE", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nUtiliser une expression régulière: ACTIVE" 10 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "Le fichier n'existe pas: " 3 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Seuls les fichiers PRJ sont autorisés.", 3 | "autolispext.project.openproject.readfailed": "Impossible de lire le fichier de projet: ", 4 | "autolispext.project.openproject.malformedfile": "Fichier de projet incorrect: ", 5 | "autolispext.project.openproject.label": "Ouvrir un projet", 6 | "autolispext.project.openproject.nospaces": "Utilisation d'espaces interdite par les règles de dénomination PRJ héritées", 7 | "autolispext.project.openproject.projectfilter": "Fichiers de projet AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NON ENREGISTRÉ)", 3 | "autolispext.project.tree.filenotexist": "Le fichier n'existe pas: " 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Échec de la conversion du décalage en position." 3 | } -------------------------------------------------------------------------------- /i18n/fra/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Aucun projet à enregistrer.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Échec de la génération du contenu du projet." 4 | } -------------------------------------------------------------------------------- /i18n/fra/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Plusieurs définitions contiennent l'indicateur @Global" 3 | } -------------------------------------------------------------------------------- /i18n/fra/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Charger le fichier actuel", 3 | "autolispext.loadlisp.title": "Charger lisp", 4 | "autolispext.loadlisp.attach": "Associez ou lancez une application hôte avant de charger ce fichier.", 5 | "autolispext.loadlisp.fileformat.win": "Ce format de fichier n'est pas pris en charge. Activez une fenêtre contenant un fichier DCL, LSP ou MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "Ce format de fichier n'est pas pris en charge. Activez une fenêtre contenant un fichier DCL ou LSP." 7 | } -------------------------------------------------------------------------------- /i18n/fra/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Appel incorrect à l'extension AutoCAD AutoLISP.", 3 | "autolispext.urihandler.activeddebugcfg": "Configuration de débogage actuelle: ", 4 | "autolispext.urihandler.debug.start": "Dans la barre de menus, cliquez sur Exécuter > Démarrer le débogage pour déboguer le fichier source AutoLISP actuel.", 5 | "autolispext.urihandler.debug.openfile": "Ouvrez un fichier source AutoLISP et cliquez sur Exécuter > Démarrer le débogage dans la barre de menus pour déboguer le fichier." 6 | } -------------------------------------------------------------------------------- /i18n/hun/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "A webHelpAbstraction.json fájl betöltése nem sikerült", 3 | "autolispext.commands.addFoldingRegion": "A kódrészlet beillesztése nem sikerült", 4 | "autolispext.help.commands.generateDocumentation": "Nem található érvényes DEFUN-név", 5 | "autolispext.providers.rename.failed": "A szimbólum érvénytelen volt az átnevezési műveletekhez" 6 | } -------------------------------------------------------------------------------- /i18n/hun/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitív", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Párbeszédpanel-szerkezetet hoz létre", 4 | "autolispext.commands.dclcompletion.primitive.structure": "szerkezeti primitív", 5 | "autolispext.commands.dclcompletion.primitive.string": "karakterlánc-szerkezet", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "logikai szerkezet", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Felsorolás", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Attribútum", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Mozaikszerű elrendezés" 10 | } -------------------------------------------------------------------------------- /i18n/hun/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitív", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Lezárja a karakterláncot" 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "A parancs nem támogatja a DCL-fájlokat.", 3 | "autolispext.format.selectionlines": "Először válassza ki a formázni kívánt kódsorokat." 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Néhány hibába ütközik a formázás során" 3 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Fájl hozzáadásához meg kell nyitnia egy projektet.", 3 | "autolispext.project.addfile.onlylspallowed": "Csak LSP-fájlok engedélyezettek.", 4 | "autolispext.project.addfile.filealreadyexist": "A fájl már létezik ebben a projektben: ", 5 | "autolispext.project.addfile.samenameexist": "Már létezik ilyen nevű fájl a projektben: ", 6 | "autolispext.project.addfile.openlabel": "Hozzáadás a projekthez", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP-forrásfájlok" 8 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Nem mentett módosítások találhatók a projektben vagy a projekt fájljaiban.\nMenti a módosításokat?", 3 | "autolispext.project.checkunsavedchanges.save": "Mentés", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Nincs mentés" 5 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Létrehozás", 3 | "autolispext.project.createproject.onlyprjallowed": "Csak PRJ-fájlok engedélyezettek.", 4 | "autolispext.project.createproject.nospaces": "A korábbi PRJ-elnevezési szabályok nem engedélyezték a szóközök használatát", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP-projektfájlok" 6 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Fájl kizárásához meg kell nyitnia egy projektet.", 3 | "autolispext.project.excludefile.filenotexist": "A kizárni kívánt fájl nem létezik az aktuális projektben." 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "A fájl nem létezik.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Nem sikerült a szöveg cseréje: " 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Egy keresés már folyamatban van, várjon annak befejezéséig, majd próbálja újra." 3 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "A fájl nem létezik: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "A fájlt nem lehet megnyitni: " 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Kis- és nagybetű megkülönböztetése", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Teljes szó keresése", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Reguláris kifejezés használata", 5 | "autolispext.project.findreplace.optionbutton.close": "Bezárás" 6 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Bezárás" 3 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "A szöveges karakterlánc cseréjéhez meg kell nyitnia egy projektet.", 3 | "autolispext.project.findreplace.replace.title": "Csere a projektben", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Adja meg a keresett karakterláncot, majd nyomja le az Enter billentyűt.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Adja meg a csere során beilleszteni kívánt karakterláncot, majd nyomja le az Enter billentyűt." 6 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " helye: ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nProjektfájl: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Csere", 5 | "autolispext.project.findreplace.searchtree.with": " ezzel: ", 6 | "autolispext.project.findreplace.searchtree.find": "Keresés ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nKis- és nagybetű megkülönböztetése: BE", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nTeljes szó keresése: BE", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nReguláris kifejezés használata: BE" 10 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "A fájl nem létezik: " 3 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Csak PRJ-fájlok engedélyezettek.", 3 | "autolispext.project.openproject.readfailed": "A projektfájl nem olvasható: ", 4 | "autolispext.project.openproject.malformedfile": "Hibás formátumú projektfájl: ", 5 | "autolispext.project.openproject.label": "Projekt megnyitása", 6 | "autolispext.project.openproject.nospaces": "A korábbi PRJ-elnevezési szabályok nem engedélyezték a szóközök használatát", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP-projektfájlok" 8 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NEM MENTETT)", 3 | "autolispext.project.tree.filenotexist": "A fájl nem létezik: " 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Nem sikerült az eltolás pozícióba történő konvertálása." 3 | } -------------------------------------------------------------------------------- /i18n/hun/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Nincs menthető projekt.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Nem sikerült létrehozni a projekt tartalmát." 4 | } -------------------------------------------------------------------------------- /i18n/hun/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Több definíció tartalmazza a @Global jelzőt" 3 | } -------------------------------------------------------------------------------- /i18n/hun/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Az aktuális fájl betöltése", 3 | "autolispext.loadlisp.title": "LISP betöltése", 4 | "autolispext.loadlisp.attach": "Először is csatoljon egy gazdaalkalmazáshoz vagy indítsa azt el a fájl betöltése előtt.", 5 | "autolispext.loadlisp.fileformat.win": "Ez a fájlformátum nem támogatott. Aktiváljon egy DCL-, LSP- vagy MNL-fájlt tartalmazó ablakot.", 6 | "autolispext.loadlisp.fileformat.mac": "Ez a fájlformátum nem támogatott. Aktiváljon egy DCL- vagy LSP-fájlt tartalmazó ablakot." 7 | } -------------------------------------------------------------------------------- /i18n/hun/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Az AutoCAD AutoLISP-bővítmény hívása érvénytelen.", 3 | "autolispext.urihandler.activeddebugcfg": "Aktuális hibakeresés-konfiguráció: ", 4 | "autolispext.urihandler.debug.start": "Az aktuális AutoLISP-forrásfájl hibakereséséhez kattintson a menüsor Run (Futtatás) > Start Debugging (Hibakeresés) indítása elemére.", 5 | "autolispext.urihandler.debug.openfile": "Nyisson meg egy AutoLISP-forrásfájlt, és kattintson a menüsor Run (Futtatás) > Start Debugging (Hibakeresés) elemére a fájl hibakereséséhez." 6 | } -------------------------------------------------------------------------------- /i18n/ita/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Impossibile caricare il file webHelpAbstraction.json", 3 | "autolispext.commands.addFoldingRegion": "Impossibile inserire il frammento", 4 | "autolispext.help.commands.generateDocumentation": "Impossibile individuare un nome di defun valido", 5 | "autolispext.providers.rename.failed": "Simbolo non valido per le operazioni di ridenominazione" 6 | } -------------------------------------------------------------------------------- /i18n/ita/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitiva", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Genera la struttura di una finestra di dialogo", 4 | "autolispext.commands.dclcompletion.primitive.structure": "primitiva strutturale", 5 | "autolispext.commands.dclcompletion.primitive.string": "struttura di stringa", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "struttura booleana", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Enumerazione", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Attributo", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Riquadro" 10 | } -------------------------------------------------------------------------------- /i18n/ita/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitiva", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Chiude la stringa" 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "Il comando non supporta i file DCL.", 3 | "autolispext.format.selectionlines": "Selezionare innanzitutto le righe di codice da formattare." 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Si sono verificati errori durante la formattazione." 3 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Prima di poter aggiungere un file, è necessario che sia aperto un progetto.", 3 | "autolispext.project.addfile.onlylspallowed": "Sono consentiti solo i file LSP.", 4 | "autolispext.project.addfile.filealreadyexist": "Il file esiste già in questo progetto: ", 5 | "autolispext.project.addfile.samenameexist": "Il file con lo stesso nome esiste già in questo progetto: ", 6 | "autolispext.project.addfile.openlabel": "Aggiungi al progetto", 7 | "autolispext.project.addfile.sourcefilefilter": "File di origine AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Sono state trovate modifiche non salvate nel progetto o nei file del progetto.\n\nSalvare le modifiche?", 3 | "autolispext.project.checkunsavedchanges.save": "Salva", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Non salvare" 5 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Crea", 3 | "autolispext.project.createproject.onlyprjallowed": "Sono consentiti solo i file PRJ.", 4 | "autolispext.project.createproject.nospaces": "Le regole di denominazione PRJ precedenti non consentono spazi", 5 | "autolispext.project.createproject.projectfilter": "File di progetto AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Per poter escludere un file, è necessario che sia aperto un progetto.", 3 | "autolispext.project.excludefile.filenotexist": "Il file da escludere non esiste nel progetto corrente." 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "Il file non esiste.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Impossibile sostituire il testo: " 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Ricerca in corso. Attendere il completamento della ricerca corrente e riprovare." 3 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "File inesistente: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Impossibile aprire il file: " 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Maiuscole/Minuscole", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Parola intera", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Usa espressione regolare", 5 | "autolispext.project.findreplace.optionbutton.close": "Chiudi" 6 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Chiudi" 3 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Prima di poter sostituire una stringa di testo, è necessario che sia aperto un progetto.", 3 | "autolispext.project.findreplace.replace.title": "Sostituisci nel progetto", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Digitare una stringa di testo da trovare e premere INVIO.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Digitare una stringa di testo da sostituire e premere INVIO." 6 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " in ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nFile di progetto: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Sostituisci", 5 | "autolispext.project.findreplace.searchtree.with": " con ", 6 | "autolispext.project.findreplace.searchtree.find": "Trova ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nMaiuscole/Minuscole: ON", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nParola intera: ON", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nUsa espressione regolare: ON" 10 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "File inesistente: " 3 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Sono consentiti solo i file PRJ.", 3 | "autolispext.project.openproject.readfailed": "Impossibile leggere il file di progetto: ", 4 | "autolispext.project.openproject.malformedfile": "Formato del file di progetto non valido: ", 5 | "autolispext.project.openproject.label": "Apri progetto", 6 | "autolispext.project.openproject.nospaces": "Le regole di denominazione PRJ precedenti non consentono spazi", 7 | "autolispext.project.openproject.projectfilter": "File di progetto AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NON SALVATO)", 3 | "autolispext.project.tree.filenotexist": "File inesistente: " 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Impossibile convertire l'offset in posizione." 3 | } -------------------------------------------------------------------------------- /i18n/ita/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Nessun progetto da salvare.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Impossibile generare il contenuto del progetto." 4 | } -------------------------------------------------------------------------------- /i18n/ita/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Più definizioni contenenti il flag @Global" 3 | } -------------------------------------------------------------------------------- /i18n/ita/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Carica il file corrente", 3 | "autolispext.loadlisp.title": "Carica lisp", 4 | "autolispext.loadlisp.attach": "Innanzitutto, associare a o avviare un'applicazione host prima di caricare il file.", 5 | "autolispext.loadlisp.fileformat.win": "Questo formato di file non è supportato. Attivare una finestra contenente un file DCL, LSP o MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "Questo formato di file non è supportato. Attivare una finestra contenente un file DCL o LSP." 7 | } -------------------------------------------------------------------------------- /i18n/ita/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Chiamata non valida all'estensione AutoLISP di AutoCAD.", 3 | "autolispext.urihandler.activeddebugcfg": "Configurazione di debug corrente: ", 4 | "autolispext.urihandler.debug.start": "Dalla barra dei menu, fare clic su Esegui > Avvia debug per eseguire il debug del file di origine AutoLISP corrente.", 5 | "autolispext.urihandler.debug.openfile": "Aprire un file di origine AutoLISP e fare clic su Esegui > Avvia debug dalla barra dei menu per eseguire il debug del file." 6 | } -------------------------------------------------------------------------------- /i18n/jpn/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "webHelpAbstraction.json ファイルのロードに失敗しました", 3 | "autolispext.commands.addFoldingRegion": "スニペットの挿入に失敗しました", 4 | "autolispext.help.commands.generateDocumentation": "有効な defun 名が見つかりませんでした", 5 | "autolispext.providers.rename.failed": "シンボルは名前変更操作に対して無効でした" 6 | } -------------------------------------------------------------------------------- /i18n/jpn/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "プリミティブ", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "ダイアログ構造を生成", 4 | "autolispext.commands.dclcompletion.primitive.structure": "構造プリミティブ", 5 | "autolispext.commands.dclcompletion.primitive.string": "文字列構造", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "ブール構造", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "列挙型", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "属性", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "タイル" 10 | } -------------------------------------------------------------------------------- /i18n/jpn/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "プリミティブ", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "文字列を終了します" 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/debug.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.debug.nodap": "は存在しません。AutoCAD 2020 以降のリリースを使用してください。デバッグする製品と同じフォルダにファイルが存在することを確認してください。", 3 | "autolispext.debug.noacad": "は存在しません。製品の実行ファイルへのフォルダ パスを確認して修正してください。", 4 | "autolispext.debug.acad.nosupport": "AutoCAD のこのインスタンスは AutoLISP ファイルのデバッグをサポートしていません。AutoCAD 2020 より後のリリースを使用してください。", 5 | "autolispext.debug.launchjson.path": "launch.json ファイルの Path 属性を使用して、製品への絶対パスを指定します。", 6 | "autolispext.debug.prod.path.win": "製品の絶対パスを指定します。例: C://Program Files//Autodesk//AutoCAD//acad.exe", 7 | "autolispext.debug.prod.path.osx": "製品の絶対パスを指定します。例: /Applications/Autodesk/AutoCAD.app/Contents/MacOS/AutoCAD", 8 | "autolispext.debug.prod.path.other": "製品の絶対パスを指定します。", 9 | "autolispext.debug.noprocess.eror": "アタッチするプロセスが見つかりませんでした。" 10 | } -------------------------------------------------------------------------------- /i18n/jpn/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "コマンドは DCL ファイルをサポートしていません。", 3 | "autolispext.format.selectionlines": "まず、整形するコード行を選択します。" 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "整形時にいくつかのエラーが検出されました" 3 | } -------------------------------------------------------------------------------- /i18n/jpn/out/process/acadPicker.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.pickprocess.acad.win": "アタッチするプロセスを選択します。AutoCAD または業種別ツールセットのいずれかが実行されていることを確認します。acad と入力して、リストから選択します。", 3 | "autolispext.pickprocess.acad.osx": "アタッチするプロセスを選択します。AutoCAD が実行されていることを確認します。AutoCAD と入力して、リストから選択します。", 4 | "autolispext.pickprocess.acad.other": "アタッチするプロセスを選択", 5 | "autolispext.pickprocess.pickfailed": "プロセス ピッカーが失敗しました({0})", 6 | "autolispext.pickprocess.process.id.port": "プロセス ID: {0}、デバッグ ポート: {1}", 7 | "autolispext.pickprocess.process.id.legacy": "プロセス ID: {0}、デバッグ ポート: {1} (従来のプロトコル)", 8 | "autolispext.pickprocess.process.port.singal": "プロセス ID: {0}、デバッグ ポート: {1} ({2})", 9 | "autolispext.pickprocess.process.id.singal": "プロセス ID: {0} ({1})" 10 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "ファイルを追加するには、プロジェクトを開く必要があります。", 3 | "autolispext.project.addfile.onlylspallowed": "LSP ファイルのみが許可されます。", 4 | "autolispext.project.addfile.filealreadyexist": "ファイルは既に次のプロジェクトに存在します: ", 5 | "autolispext.project.addfile.samenameexist": "同じ名前のファイルが既に次のプロジェクトに存在します: ", 6 | "autolispext.project.addfile.openlabel": "プロジェクトに追加", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP ソース ファイル" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "プロジェクトまたはプロジェクト内のファイルに未保存の変更があります。\n変更を保存しますか?", 3 | "autolispext.project.checkunsavedchanges.save": "保存する", 4 | "autolispext.project.checkunsavedchanges.dontsave": "保存しない" 5 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "作成", 3 | "autolispext.project.createproject.onlyprjallowed": "PRJ ファイルのみが許可されます。", 4 | "autolispext.project.createproject.nospaces": "旧形式の PRJ 命名規則ではスペースを使用できません", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP プロジェクト ファイル" 6 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "ファイルを除外するには、プロジェクトを開く必要があります。", 3 | "autolispext.project.excludefile.filenotexist": "除外するファイルは現在のプロジェクトに存在しません。" 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "ファイルが存在しません。", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "文字の置換に失敗しました: " 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "検索が進行中です。現在の検索が完了するまで待ってから、もう一度試してください。" 3 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/findInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.find.openproject": "文字列を検索するには、プロジェクトを開く必要があります。", 3 | "autolispext.project.find.title": "プロジェクト内を検索", 4 | "autolispext.project.find.hint": "検索する文字列を入力し、[Enter]を押します。", 5 | "autolispext.project.find.supportos": "検索と置換は、64 ビット システムでのみサポートされています。", 6 | "autolispext.project.find.inprogress": "進行中... ", 7 | "autolispext.project.find.found": "検出 ", 8 | "autolispext.project.find.results": " 個の結果: ", 9 | "autolispext.project.find.files": " ファイル:", 10 | "autolispext.project.find.stopped": "検索が停止しました。 ", 11 | "autolispext.project.find.noresults": "結果が見つかりません。", 12 | "autolispext.project.find.exceedmaxresults": "検索結果の上限を超えました。検索結果が少なくなるように、検索条件を変更してください。 " 13 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "ファイルが存在しません: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "ファイルを開けませんでした: " 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "大/小文字を区別", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "完全一致", 4 | "autolispext.project.findreplace.optionbutton.regexp": "正規表現を使用", 5 | "autolispext.project.findreplace.optionbutton.close": "閉じる" 6 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "閉じる" 3 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "文字列を置換するには、プロジェクトを開く必要があります。", 3 | "autolispext.project.findreplace.replace.title": "プロジェクト内で置換", 4 | "autolispext.project.findreplace.replace.hint.keyword": "検索する文字列を入力し、[Enter]を押します。", 5 | "autolispext.project.findreplace.replace.hint.replacement": "置換後の文字列を入力し、[Enter]を押します。" 6 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " 内 ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nプロジェクト ファイル: ", 4 | "autolispext.project.findreplace.searchtree.replace": "置換", 5 | "autolispext.project.findreplace.searchtree.with": " 置換後 ", 6 | "autolispext.project.findreplace.searchtree.find": "検索 ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\n大/小文字を区別: オン", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\n完全一致: オン", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\n正規表現を使用: オン" 10 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "ファイルが存在しません: " 3 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "PRJ ファイルのみが許可されます。", 3 | "autolispext.project.openproject.readfailed": "プロジェクト ファイルを読み込めません: ", 4 | "autolispext.project.openproject.malformedfile": "不正なプロジェクト ファイル: ", 5 | "autolispext.project.openproject.label": "プロジェクトを開く", 6 | "autolispext.project.openproject.nospaces": "旧形式の PRJ 命名規則ではスペースを使用できません", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP プロジェクト ファイル" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (未保存)", 3 | "autolispext.project.tree.filenotexist": "ファイルが存在しません: " 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "オフセットを位置に変換できませんでした。" 3 | } -------------------------------------------------------------------------------- /i18n/jpn/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "保存するプロジェクトがありません。", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "プロジェクト コンテンツの生成に失敗しました。" 4 | } -------------------------------------------------------------------------------- /i18n/jpn/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "@Global フラグを含む定義が複数存在します" 3 | } -------------------------------------------------------------------------------- /i18n/jpn/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "現在のファイルをロード", 3 | "autolispext.loadlisp.title": "LISP をロード", 4 | "autolispext.loadlisp.attach": "まず、このファイルをロードする前に、ホスト アプリケーションにアタッチするか、ホスト アプリケーションを起動してください。", 5 | "autolispext.loadlisp.fileformat.win": "このファイル形式はサポートされていません。DCL、LSP、または MNL ファイルを含むウィンドウをアクティブにしてください。", 6 | "autolispext.loadlisp.fileformat.mac": "このファイル形式はサポートされていません。DCL または LSP ファイルを含むウィンドウをアクティブにしてください。" 7 | } -------------------------------------------------------------------------------- /i18n/jpn/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "AutoCAD AutoLISP Extension の呼び出しが無効です。", 3 | "autolispext.urihandler.activeddebugcfg": "現在のデバッグ環境設定: ", 4 | "autolispext.urihandler.debug.start": "現在の AutoLISP ソース ファイルをデバッグするには、メニュー バーから、[実行] > [デバッグを開始]をクリックします。", 5 | "autolispext.urihandler.debug.openfile": "ファイルをデバッグするには、AutoLISP ソース ファイルを開き、メニューバーから[実行] > [デバッグを開始]をクリックします。" 6 | } -------------------------------------------------------------------------------- /i18n/kor/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "webHelpAbstraction.json 파일을 로드하지 못했습니다.", 3 | "autolispext.commands.addFoldingRegion": "조각을 삽입하지 못했습니다.", 4 | "autolispext.help.commands.generateDocumentation": "유효한 defun 이름을 찾을 수 없습니다.", 5 | "autolispext.providers.rename.failed": "이름바꾸기 작업에 대한 기호가 잘못되었습니다." 6 | } -------------------------------------------------------------------------------- /i18n/kor/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "기본체", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "대화상자 구조 생성", 4 | "autolispext.commands.dclcompletion.primitive.structure": "구조 기본체", 5 | "autolispext.commands.dclcompletion.primitive.string": "문자열 구조", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "부울 구조", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "열거", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "속성", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "타일" 10 | } -------------------------------------------------------------------------------- /i18n/kor/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "기본체", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "문자열 닫기" 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/debug.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.debug.nodap": "이(가) 존재하지 않습니다. AutoCAD 2020 이후 릴리즈를 사용하십시오. 디버깅할 제품과 동일한 폴더에 해당 파일이 있는지 확인하십시오.", 3 | "autolispext.debug.noacad": "이(가) 없습니다. 제품 실행 파일의 폴더 경로를 확인하고 수정하십시오.", 4 | "autolispext.debug.acad.nosupport": "이 AutoCAD 인스턴스는 AutoLISP 파일 디버그를 지원하지 않습니다. AutoCAD 2020 이후 릴리즈를 사용하십시오.", 5 | "autolispext.debug.launchjson.path": "launch.json 파일의 경로 속성을 사용해 제품의 절대 경로를 지정합니다.", 6 | "autolispext.debug.prod.path.win": "제품의 절대 경로를 지정합니다(예: C://Program Files//Autodesk//AutoCAD//acad.exe).", 7 | "autolispext.debug.prod.path.osx": "제품의 절대 경로를 지정합니다(예: /Applications/Autodesk/AutoCAD.app/Contents/MacOS/AutoCAD).", 8 | "autolispext.debug.prod.path.other": "제품의 절대 경로를 지정합니다.", 9 | "autolispext.debug.noprocess.eror": "부착할 프로세스가 없습니다." 10 | } -------------------------------------------------------------------------------- /i18n/kor/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "명령이 DCL 파일을 지원하지 않습니다.", 3 | "autolispext.format.selectionlines": "먼저 형식을 지정할 코드 행을 선택합니다." 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "형식 지정 시 일부 오류가 발생합니다." 3 | } -------------------------------------------------------------------------------- /i18n/kor/out/process/acadPicker.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.pickprocess.acad.win": "부착할 프로세스를 선택합니다. AutoCAD 또는 전문화 툴셋 중 하나가 실행되고 있는지 확인하십시오. acad를 입력하고 리스트에서 선택합니다.", 3 | "autolispext.pickprocess.acad.osx": "부착할 프로세스를 선택합니다. AutoCAD가 실행 중인지 확인합니다. AutoCAD를 입력하고 리스트에서 선택합니다.", 4 | "autolispext.pickprocess.acad.other": "부착할 프로세스 선택", 5 | "autolispext.pickprocess.pickfailed": "프로세스 선택기 실패({0})", 6 | "autolispext.pickprocess.process.id.port": "프로세스 ID: {0}, 디버그 포트: {1}", 7 | "autolispext.pickprocess.process.id.legacy": "프로세스 ID: {0}, 디버그 포트: {1}(기존 프로토콜)", 8 | "autolispext.pickprocess.process.port.singal": "프로세스 ID: {0}, 디버그 포트: {1}({2})", 9 | "autolispext.pickprocess.process.id.singal": "프로세스 ID: {0}({1})" 10 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "파일을 추가하기 전에 프로젝트가 열려 있어야 합니다.", 3 | "autolispext.project.addfile.onlylspallowed": "LSP 파일만 허용됩니다.", 4 | "autolispext.project.addfile.filealreadyexist": "파일이 이 프로젝트에 이미 있습니다. ", 5 | "autolispext.project.addfile.samenameexist": "같은 이름의 파일이 이 프로젝트에 이미 있습니다. ", 6 | "autolispext.project.addfile.openlabel": "프로젝트에 추가", 7 | "autolispext.project.addfile.sourcefilefilter": "AutoLISP 원본 파일" 8 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "프로젝트 또는 프로젝트의 파일에 저장되지 않은 변경 사항이 있습니다.\n변경 사항을 저장하시겠습니까?", 3 | "autolispext.project.checkunsavedchanges.save": "저장", 4 | "autolispext.project.checkunsavedchanges.dontsave": "저장 안 함" 5 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "작성", 3 | "autolispext.project.createproject.onlyprjallowed": "PRJ 파일만 허용됩니다.", 4 | "autolispext.project.createproject.nospaces": "기존 PRJ 명명 규칙에서는 공백이 허용되지 않습니다.", 5 | "autolispext.project.createproject.projectfilter": "AutoLISP 프로젝트 파일" 6 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "파일을 제외하기 전에 프로젝트가 열려 있어야 합니다.", 3 | "autolispext.project.excludefile.filenotexist": "제외할 파일이 현재 프로젝트에 존재하지 않습니다." 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "파일이 존재하지 않습니다.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "문자를 대치하지 못함: " 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "검색이 진행 중입니다. 현재 검색이 완료될 때까지 기다렸다가 다시 시도하십시오." 3 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/findInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.find.openproject": "문자열을 검색하기 전에 프로젝트가 열려 있어야 합니다.", 3 | "autolispext.project.find.title": "프로젝트에서 찾기", 4 | "autolispext.project.find.hint": "찾을 문자열을 입력하고 Enter 키를 누릅니다.", 5 | "autolispext.project.find.supportos": "찾기 및 대치는 64비트 시스템에서만 지원됩니다.", 6 | "autolispext.project.find.inprogress": "진행 중... ", 7 | "autolispext.project.find.found": "발견됨( ", 8 | "autolispext.project.find.results": " 개 결과/ ", 9 | "autolispext.project.find.files": " 개 파일):", 10 | "autolispext.project.find.stopped": "찾기가 중지되었습니다. ", 11 | "autolispext.project.find.noresults": "결과를 찾을 수 없습니다.", 12 | "autolispext.project.find.exceedmaxresults": "검색 결과 한계가 초과되었습니다. 검색을 구체화하여 결과 범위를 좁히십시오. " 13 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "파일이 존재하지 않음: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "파일을 열 수 없음: " 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "대소문자 구분", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "전체 단어 일치", 4 | "autolispext.project.findreplace.optionbutton.regexp": "정규식 사용", 5 | "autolispext.project.findreplace.optionbutton.close": "닫기" 6 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "닫기" 3 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "문자열을 대치하기 전에 프로젝트가 열려 있어야 합니다.", 3 | "autolispext.project.findreplace.replace.title": "프로젝트에서 대치", 4 | "autolispext.project.findreplace.replace.hint.keyword": "찾을 문자열을 입력하고 Enter 키를 누릅니다.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "대치할 문자열을 입력하고 Enter 키를 누릅니다." 6 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " 위치 ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\n프로젝트 파일: ", 4 | "autolispext.project.findreplace.searchtree.replace": "대치", 5 | "autolispext.project.findreplace.searchtree.with": " 내용 ", 6 | "autolispext.project.findreplace.searchtree.find": "찾기 ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\n대소문자 구분: 켜기", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\n전체 단어 일치: 켜기", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\n정규식 사용: 켜기" 10 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "파일이 존재하지 않음: " 3 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "PRJ 파일만 허용됩니다.", 3 | "autolispext.project.openproject.readfailed": "프로젝트 파일을 읽을 수 없음: ", 4 | "autolispext.project.openproject.malformedfile": "잘못된 프로젝트 파일: ", 5 | "autolispext.project.openproject.label": "프로젝트 열기", 6 | "autolispext.project.openproject.nospaces": "기존 PRJ 명명 규칙에서는 공백이 허용되지 않습니다.", 7 | "autolispext.project.openproject.projectfilter": "AutoLISP 프로젝트 파일" 8 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (저장되지 않음)", 3 | "autolispext.project.tree.filenotexist": "파일이 존재하지 않음: " 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "간격띄우기를 위치로 변환하지 못했습니다." 3 | } -------------------------------------------------------------------------------- /i18n/kor/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "저장할 프로젝트가 없습니다.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "프로젝트 컨텐츠를 생성하지 못했습니다." 4 | } -------------------------------------------------------------------------------- /i18n/kor/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "@Global 플래그를 포함하는 다중 정의" 3 | } -------------------------------------------------------------------------------- /i18n/kor/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "현재 파일 로드", 3 | "autolispext.loadlisp.title": "lisp 로드", 4 | "autolispext.loadlisp.attach": "먼저 이 파일을 로드하기 전에 호스트 응용프로그램에 연결하거나 호스트 응용프로그램을 시작합니다.", 5 | "autolispext.loadlisp.fileformat.win": "이 파일 형식은 지원되지 않습니다. DCL, LSP 또는 MNL 파일이 포함된 윈도우를 활성화하십시오.", 6 | "autolispext.loadlisp.fileformat.mac": "이 파일 형식은 지원되지 않습니다. DCL 또는 LSP 파일이 포함된 윈도우를 활성화하십시오." 7 | } -------------------------------------------------------------------------------- /i18n/kor/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "AutoCAD AutoLISP Extension에 대한 잘못된 호출입니다.", 3 | "autolispext.urihandler.activeddebugcfg": "현재 디버그 구성: ", 4 | "autolispext.urihandler.debug.start": "메뉴 막대에서 실행 > 디버그 시작을 클릭하여 현재 AutoLISP 원본 파일을 디버그합니다.", 5 | "autolispext.urihandler.debug.openfile": "AutoLISP 원본 파일을 열고 메뉴 막대에서 실행 > 디버그 시작을 클릭하여 파일을 디버그합니다." 6 | } -------------------------------------------------------------------------------- /i18n/plk/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Wczytanie pliku webHelpAbstraction.json nie powiodło się", 3 | "autolispext.commands.addFoldingRegion": "Wstawienie fragmentu nie powiodło się", 4 | "autolispext.help.commands.generateDocumentation": "Nie można znaleźć prawidłowej nazwy defun", 5 | "autolispext.providers.rename.failed": "Wystąpił nieprawidłowy symbol w operacjach zmiany nazwy" 6 | } -------------------------------------------------------------------------------- /i18n/plk/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Typ prosty", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Generuje strukturę okna dialogowego", 4 | "autolispext.commands.dclcompletion.primitive.structure": "strukturalny typ prosty", 5 | "autolispext.commands.dclcompletion.primitive.string": "struktura ciągu", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "struktura logiczna", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Wyliczenie", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Atrybut", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Blok" 10 | } -------------------------------------------------------------------------------- /i18n/plk/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Typ prosty", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Kończy ciąg" 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "Polecenie nie obsługuje plików DCL.", 3 | "autolispext.format.selectionlines": "Najpierw wybierz linie kodu do sformatowania." 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Wystąpiły błędy podczas formatowania" 3 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Projekt musi być otwarty, aby można było dodać plik.", 3 | "autolispext.project.addfile.onlylspallowed": "Dozwolone są tylko pliki LSP.", 4 | "autolispext.project.addfile.filealreadyexist": "Plik już istnieje w tym projekcie: ", 5 | "autolispext.project.addfile.samenameexist": "Plik o tej samej nazwie już istnieje w tym projekcie: ", 6 | "autolispext.project.addfile.openlabel": "Dodaj do projektu", 7 | "autolispext.project.addfile.sourcefilefilter": "Pliki źródłowe AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Znaleziono niezapisane zmiany w projekcie lub w plikach projektu.\nCzy chcesz zapisać te zmiany?", 3 | "autolispext.project.checkunsavedchanges.save": "Zapisz", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Nie zapisuj" 5 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Utwórz", 3 | "autolispext.project.createproject.onlyprjallowed": "Dozwolone są tylko pliki PRJ.", 4 | "autolispext.project.createproject.nospaces": "Starsze reguły nazewnictwa plików PRJ nie zezwalają na używanie spacji", 5 | "autolispext.project.createproject.projectfilter": "Pliki projektu AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Projekt musi być otwarty, aby można było wykluczyć plik.", 3 | "autolispext.project.excludefile.filenotexist": "Plik, który chcesz wykluczyć, nie istnieje w bieżącym projekcie." 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "Plik nie istnieje.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Nie powiodło się zastąpienie tekstu: " 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Trwa wyszukiwanie. Poczekaj na zakończenie bieżącego wyszukiwania i spróbuj ponownie." 3 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "Plik nie istnieje: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Nie można otworzyć pliku: " 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Uwzględniaj wielkość liter", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Dopasuj całe wyrazy", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Użyj wyrażeń regularnych", 5 | "autolispext.project.findreplace.optionbutton.close": "Zamknij" 6 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Zamknij" 3 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Projekt musi być otwarty, aby można było zastąpić ciąg tekstowy.", 3 | "autolispext.project.findreplace.replace.title": "Zastąp w projekcie", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Wpisz ciąg tekstowy do wyszukania i naciśnij klawisz Enter.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Wpisz ciąg tekstowy, na który ma być wykonane zastąpienie, i naciśnij klawisz Enter." 6 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " w ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nPlik projektu: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Zastąp", 5 | "autolispext.project.findreplace.searchtree.with": " ciągiem ", 6 | "autolispext.project.findreplace.searchtree.find": "Znajdź ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nUwzględniaj wielkość liter: WŁ.", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nDopasuj całe wyrazy: WŁ.", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nUżyj wyrażeń regularnych: WŁ." 10 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "Plik nie istnieje: " 3 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Dozwolone są tylko pliki PRJ.", 3 | "autolispext.project.openproject.readfailed": "Nie można odczytać pliku projektu: ", 4 | "autolispext.project.openproject.malformedfile": "Błędny plik projektu: ", 5 | "autolispext.project.openproject.label": "Otwórz projekt", 6 | "autolispext.project.openproject.nospaces": "Starsze reguły nazewnictwa plików PRJ nie zezwalają na używanie spacji", 7 | "autolispext.project.openproject.projectfilter": "Pliki projektu AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NIEZAPISANE)", 3 | "autolispext.project.tree.filenotexist": "Plik nie istnieje: " 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Przekształcenie odsunięcia w położenie nie powiodło się." 3 | } -------------------------------------------------------------------------------- /i18n/plk/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Brak projektu do zapisania.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Wygenerowanie zawartości projektu nie powiodło się." 4 | } -------------------------------------------------------------------------------- /i18n/plk/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Wiele definicji zawierających flagę @Global" 3 | } -------------------------------------------------------------------------------- /i18n/plk/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Wczytaj bieżący plik", 3 | "autolispext.loadlisp.title": "Wczytaj LISP", 4 | "autolispext.loadlisp.attach": "Przed wczytaniem tego pliku należy najpierw dołączyć do aplikacji nadrzędnej lub ją uruchomić.", 5 | "autolispext.loadlisp.fileformat.win": "Ten format pliku nie jest obsługiwany. Aktywuj okno zawierające plik DCL, LSP lub MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "Ten format pliku nie jest obsługiwany. Aktywuj okno zawierające plik DCL lub LSP." 7 | } -------------------------------------------------------------------------------- /i18n/plk/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Nieprawidłowe wywołanie rozszerzenia AutoCAD AutoLISP.", 3 | "autolispext.urihandler.activeddebugcfg": "Bieżąca konfiguracja debugowania: ", 4 | "autolispext.urihandler.debug.start": "Na pasku menu kliknij kolejno opcje Uruchom > Rozpocznij debugowanie, aby debugować bieżący plik źródłowy AutoLISP.", 5 | "autolispext.urihandler.debug.openfile": "Otwórz plik źródłowy AutoLISP i na pasku menu kliknij kolejno opcje Uruchom > Rozpocznij debugowanie, aby debugować plik." 6 | } -------------------------------------------------------------------------------- /i18n/ptb/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Falha ao carregar o arquivo webHelpAbstraction.json", 3 | "autolispext.commands.addFoldingRegion": "Falha ao inserir trecho", 4 | "autolispext.help.commands.generateDocumentation": "Não foi possível localizar um nome de defun válido", 5 | "autolispext.providers.rename.failed": "O símbolo era inválido para as operações de renomeação" 6 | } -------------------------------------------------------------------------------- /i18n/ptb/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Primitivo", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Gera uma estrutura de diálogo", 4 | "autolispext.commands.dclcompletion.primitive.structure": "primitivo estrutural", 5 | "autolispext.commands.dclcompletion.primitive.string": "estrutura de sequência", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "estrutura booleana", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Enum.", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Atributo", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Bloco" 10 | } -------------------------------------------------------------------------------- /i18n/ptb/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Primitivo", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Termina a sequência de caracteres" 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "O comando não suporta arquivos DCL.", 3 | "autolispext.format.selectionlines": "Primeiro, selecione as linhas de código para formatar." 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "Ele encontra alguns erros durante a formatação" 3 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Um projeto deve ser aberto para ser possível adicionar um arquivo.", 3 | "autolispext.project.addfile.onlylspallowed": "Somente arquivos LSP são permitidos.", 4 | "autolispext.project.addfile.filealreadyexist": "O arquivo já existe neste projeto: ", 5 | "autolispext.project.addfile.samenameexist": "Um arquivo com o mesmo nome já existe neste projeto: ", 6 | "autolispext.project.addfile.openlabel": "Adicionar ao projeto", 7 | "autolispext.project.addfile.sourcefilefilter": "Arquivos de origem do AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "Foram encontradas alterações não salvas no projeto ou nos arquivos do projeto.\nDeseja salvar as alterações?", 3 | "autolispext.project.checkunsavedchanges.save": "Salvar", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Não salvar" 5 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Criar", 3 | "autolispext.project.createproject.onlyprjallowed": "Somente arquivos PRJ são permitidos.", 4 | "autolispext.project.createproject.nospaces": "As regras de nomenclatura PRJ herdadas não permitem espaços", 5 | "autolispext.project.createproject.projectfilter": "Arquivos de projeto do AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Um projeto deve ser aberto para ser possível excluir um arquivo.", 3 | "autolispext.project.excludefile.filenotexist": "O arquivo que deseja excluir não existe no projeto atual." 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "O arquivo não existe.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Falha ao substituir o texto: " 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Uma pesquisa está em andamento, aguarde até que a pesquisa atual tenha sido concluída e tente novamente." 3 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "O arquivo não existe: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Não foi possível abrir o arquivo: " 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "Distinguir maiúsculas/minúsculas", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Coincidir palavra inteira", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Usar expressão regular", 5 | "autolispext.project.findreplace.optionbutton.close": "Fechar" 6 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Fechar" 3 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Um projeto deve ser aberto para ser possível substituir uma sequência de texto.", 3 | "autolispext.project.findreplace.replace.title": "Substituir no projeto", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Digite uma sequência de texto a ser encontrada e pressione Enter.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Insira uma sequência de texto para substituir e pressione Enter." 6 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " em ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nArquivo de projeto: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Substituir", 5 | "autolispext.project.findreplace.searchtree.with": " por ", 6 | "autolispext.project.findreplace.searchtree.find": "Localizar ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nDistinguir maiúsculas/minúsculas: ATIVADO", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nCoincidir palavra inteira: ATIVADO", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nUsar expressão regular: ATIVADO" 10 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "O arquivo não existe: " 3 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Somente arquivos PRJ são permitidos.", 3 | "autolispext.project.openproject.readfailed": "Não é possível ler o arquivo de projeto: ", 4 | "autolispext.project.openproject.malformedfile": "Arquivo de projeto malformado: ", 5 | "autolispext.project.openproject.label": "Abrir projeto", 6 | "autolispext.project.openproject.nospaces": "As regras de nomenclatura PRJ herdadas não permitem espaços", 7 | "autolispext.project.openproject.projectfilter": "Arquivos de projeto do AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (NÃO SALVO)", 3 | "autolispext.project.tree.filenotexist": "O arquivo não existe: " 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Falha ao converter o deslocamento para a posição." 3 | } -------------------------------------------------------------------------------- /i18n/ptb/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Nenhum projeto a ser salvo.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Falha ao gerar o conteúdo do projeto." 4 | } -------------------------------------------------------------------------------- /i18n/ptb/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Várias definições contendo o sinalizador @Global" 3 | } -------------------------------------------------------------------------------- /i18n/ptb/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Carregar o arquivo atual", 3 | "autolispext.loadlisp.title": "Carregar lisp", 4 | "autolispext.loadlisp.attach": "Primeiro, anexe ou inicie um aplicativo host antes de carregar este arquivo.", 5 | "autolispext.loadlisp.fileformat.win": "Esse formato de arquivo não é suportado. Ative uma janela contendo um arquivo DCL, LSP ou MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "Esse formato de arquivo não é suportado. Ative uma janela contendo um arquivo DCL ou LSP." 7 | } -------------------------------------------------------------------------------- /i18n/ptb/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Chamada inválida para a extensão AutoCAD AutoLISP.", 3 | "autolispext.urihandler.activeddebugcfg": "Configuração de depuração atual: ", 4 | "autolispext.urihandler.debug.start": "Na barra de menus, clique em Executar > Iniciar depuração para depurar o arquivo de origem do AutoLISP atual.", 5 | "autolispext.urihandler.debug.openfile": "Abra um arquivo de origem do AutoLISP e clique em Executar > Iniciar depuração na barra de menus para depurar o arquivo." 6 | } -------------------------------------------------------------------------------- /i18n/rus/out/commands.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.help.commands.openWebHelp": "Не удалось загрузить файл webHelpAbstraction.json", 3 | "autolispext.commands.addFoldingRegion": "Не удалось вставить фрагмент", 4 | "autolispext.help.commands.generateDocumentation": "Невозможно найти допустимое имя для defun", 5 | "autolispext.providers.rename.failed": "Символ был недопустимым для операций переименования" 6 | } -------------------------------------------------------------------------------- /i18n/rus/out/completion/completionLibraryDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.primitive": "Примитив", 3 | "autolispext.commands.dclcompletion.primitive.dialog": "Создание структуры диалогового окна", 4 | "autolispext.commands.dclcompletion.primitive.structure": "структурный примитив", 5 | "autolispext.commands.dclcompletion.primitive.string": "строковая структура", 6 | "autolispext.commands.dclcompletion.primitive.boolean": "логическая структура", 7 | "autolispext.commands.dclcompletion.primitive.Enum": "Перечисление", 8 | "autolispext.commands.dclcompletion.primitive.Attribute": "Атрибут", 9 | "autolispext.commands.dclcompletion.primitive.Tile": "Фрагмент" 10 | } -------------------------------------------------------------------------------- /i18n/rus/out/completion/completionProviderDcl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.commands.dclcompletion.provider.Primitive": "Примитив", 3 | "autolispext.commands.dclcompletion.provider.ClosesString": "Закрытие строки" 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/format/formatProviders.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.format.notsupport.dcl": "Команда не поддерживает файлы DCL.", 3 | "autolispext.format.selectionlines": "Сначала выберите строки кода для форматирования." 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/format/formatter.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.formatter.errors": "При форматировании встречаются ошибки" 3 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/addFile2Project.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.addfile.openproject": "Перед добавлением файла необходимо открыть проект.", 3 | "autolispext.project.addfile.onlylspallowed": "Разрешены только файлы LSP.", 4 | "autolispext.project.addfile.filealreadyexist": "Файл уже существует в проекте: ", 5 | "autolispext.project.addfile.samenameexist": "Файл с таким именем уже существует в проекте: ", 6 | "autolispext.project.addfile.openlabel": "Добавить в проект", 7 | "autolispext.project.addfile.sourcefilefilter": "Исходные файлы AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/checkUnsavedChanges.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.checkunsavedchanges.message": "В проекте или файлах проекта есть несохраненные изменения.\nСохранить изменения?", 3 | "autolispext.project.checkunsavedchanges.save": "Сохранить", 4 | "autolispext.project.checkunsavedchanges.dontsave": "Не сохранять" 5 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/createProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.createproject.createlabel": "Создать", 3 | "autolispext.project.createproject.onlyprjallowed": "Разрешены только файлы PRJ.", 4 | "autolispext.project.createproject.nospaces": "В прошлых версиях правилами именования файлов PRJ не допускалось использование пробелов", 5 | "autolispext.project.createproject.projectfilter": "Файлы проектов AutoLISP" 6 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/excludeFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.excludefile.openproject": "Перед исключением файла необходимо открыть проект.", 3 | "autolispext.project.excludefile.filenotexist": "Файл, который необходимо исключить, не существует в текущем проекте." 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/applyReplacement.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.applyreplacement.filenotexist": "Файл не существует.", 3 | "autolispext.project.findreplace.applyreplacement.replacetextfailed": "Не удалось заменить текст: " 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/clearResults.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findReplace.clearresults.issearching": "Выполняется поиск. Дождитесь завершения текущего поиска и повторите попытку." 3 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/openSearchResult.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.opensearchresult.filenotexist": "Файл не существует: ", 3 | "autolispext.project.findreplace.opensearchresult.openfailed": "Не удалось открыть файл: " 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/optionButton.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.matchcase": "С учетом регистра", 3 | "autolispext.project.findreplace.optionbutton.matchwholeword": "Слово целиком", 4 | "autolispext.project.findreplace.optionbutton.regexp": "Использовать регулярное выражение", 5 | "autolispext.project.findreplace.optionbutton.close": "Закрыть" 6 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/options.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.optionbutton.close": "Закрыть" 3 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/replaceInProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.replace.openproject": "Перед заменой текстовой строки необходимо открыть проект.", 3 | "autolispext.project.findreplace.replace.title": "Заменить в проекте", 4 | "autolispext.project.findreplace.replace.hint.keyword": "Введите текстовую строку для поиска и нажмите ENTER.", 5 | "autolispext.project.findreplace.replace.hint.replacement": "Введите текстовую строку для использования в качестве замены и нажмите ENTER." 6 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/findReplace/searchTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.findreplace.searchtree.in": " в ", 3 | "autolispext.project.findreplace.searchtree.prjfile": "\r\nФайл проекта: ", 4 | "autolispext.project.findreplace.searchtree.replace": "Заменить", 5 | "autolispext.project.findreplace.searchtree.with": " на ", 6 | "autolispext.project.findreplace.searchtree.find": "Найти ", 7 | "autolispext.project.findreplace.searchtree.matchcaseon": "\r\nС учетом регистра: ВКЛ.", 8 | "autolispext.project.findreplace.searchtree.matchwholewordon": "\r\nСлово целиком: ВКЛ.", 9 | "autolispext.project.findreplace.searchtree.regexpon": "\r\nИспользовать регулярное выражение: ВКЛ." 10 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/openLspFile.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openlspfile.filenotexist": "Файл не существует: " 3 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/openProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.openproject.onlyprjallowed": "Разрешены только файлы PRJ.", 3 | "autolispext.project.openproject.readfailed": "Не удалось прочитать файл проекта: ", 4 | "autolispext.project.openproject.malformedfile": "Неверно сформированный файл проекта: ", 5 | "autolispext.project.openproject.label": "Открыть проект", 6 | "autolispext.project.openproject.nospaces": "В прошлых версиях правилами именования файлов PRJ не допускалось использование пробелов", 7 | "autolispext.project.openproject.projectfilter": "Файлы проектов AutoLISP" 8 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/projectTree.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.tree.unsaved": " (НЕ СОХРАНЕНО)", 3 | "autolispext.project.tree.filenotexist": "Файл не существует: " 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/readOnlyDocument.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.readonlydocument.convertoffsettopositionfailed": "Не удалось преобразовать смещение для расположения." 3 | } -------------------------------------------------------------------------------- /i18n/rus/out/project/saveProject.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.project.saveproject.noprojecttosave": "Нет проекта для сохранения.", 3 | "autolispext.project.saveproject.generateprjcontentfailed": "Не удалось создать содержимое проекта." 4 | } -------------------------------------------------------------------------------- /i18n/rus/out/providers/hoverProvider.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.hoverProvider.ambiguous": "Несколько определений, содержащих флаг @Global" 3 | } -------------------------------------------------------------------------------- /i18n/rus/out/statusbar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.loadlisp.tooltip": "Загрузка текущего файла", 3 | "autolispext.loadlisp.title": "Загрузка LISP", 4 | "autolispext.loadlisp.attach": "Перед загрузкой этого файла выполните присоединение или запустите главное приложение.", 5 | "autolispext.loadlisp.fileformat.win": "Этот формат файла не поддерживается. Активируйте окно, содержащее файл DCL, LSP или MNL.", 6 | "autolispext.loadlisp.fileformat.mac": "Этот формат файла не поддерживается. Активируйте окно, содержащее файл DCL или LSP." 7 | } -------------------------------------------------------------------------------- /i18n/rus/out/uriHandler.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "autolispext.urihandler.invaid": "Недопустимый вызов AutoCAD AutoLISP Extension.", 3 | "autolispext.urihandler.activeddebugcfg": "Текущая конфигурация отладки: ", 4 | "autolispext.urihandler.debug.start": "В строке меню выберите «Выполнить» > «Начать отладку» для отладки текущего файла исходного кода AutoLISP.", 5 | "autolispext.urihandler.debug.openfile": "Откройте файл исходного кода AutoLISP и выберите «Выполнить» > «Начать отладку» в строке меню, чтобы выполнить отладку файла." 6 | } -------------------------------------------------------------------------------- /images/adsk_lisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/images/adsk_lisp.png -------------------------------------------------------------------------------- /images/dark/Find.svg: -------------------------------------------------------------------------------- 1 | Find -------------------------------------------------------------------------------- /images/dark/Hide_Path.svg: -------------------------------------------------------------------------------- 1 | Hide Path -------------------------------------------------------------------------------- /images/dark/Load_to_AutoCAD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Artboard 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /images/dark/Regular_Expression_Off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/dark/Regular_Expression_On.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /images/dark/Save_Project.svg: -------------------------------------------------------------------------------- 1 | Save Project -------------------------------------------------------------------------------- /images/dark/Show_Path.svg: -------------------------------------------------------------------------------- 1 | Show Path -------------------------------------------------------------------------------- /images/dark/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/light/Find.svg: -------------------------------------------------------------------------------- 1 | Find -------------------------------------------------------------------------------- /images/light/Hide_Path.svg: -------------------------------------------------------------------------------- 1 | Hide Path -------------------------------------------------------------------------------- /images/light/Regular_Expression_Off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /images/light/Regular_Expression_On.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /images/light/Save_Project.svg: -------------------------------------------------------------------------------- 1 | Save Project -------------------------------------------------------------------------------- /images/light/Show_Path.svg: -------------------------------------------------------------------------------- 1 | Show Path -------------------------------------------------------------------------------- /images/light/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "outDir": "out", 6 | "rootDir": "extension/src", 7 | "lib": [ "es6" ], 8 | "sourceMap": true, 9 | "alwaysStrict": true 10 | }, 11 | "include": [ 12 | "extension/src" 13 | ], 14 | "exclude": [ 15 | "node_modules", 16 | ".vscode-test" 17 | ] 18 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-string-throw": true, 4 | "no-unused-expression": true, 5 | "no-duplicate-variable": true, 6 | "curly": true, 7 | "class-name": true, 8 | "semicolon": [ 9 | true, 10 | "always" 11 | ], 12 | "triple-equals": true 13 | }, 14 | "defaultSeverity": "warning" 15 | } -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace HelpAbstractionGenerator 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/HelpAbstractionGenerator.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/bin/Debug/HelpAbstractionGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/bin/Debug/HelpAbstractionGenerator.exe -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/bin/Debug/HelpAbstractionGenerator.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/bin/Debug/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/bin/Debug/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/bin/Debug/Processing/ExtractHere.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/bin/Debug/Processing/ExtractHere.zip -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/images/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/images/step1.png -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/images/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/images/step2.png -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/images/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/images/step3.png -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/images/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/images/step4.png -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/images/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/HelpAbstractionGenerator/images/step5.png -------------------------------------------------------------------------------- /utils/HelpAbstractionGenerator/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /utils/acadProcessFinder/bin/acadProcessFinder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/acadProcessFinder/bin/acadProcessFinder.exe -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace autolispext.i18.helper 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | [assembly: ThemeInfo( 4 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 5 | //(used if a resource is not found in the page, 6 | // or application resource dictionaries) 7 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 8 | //(used if a resource is not found in the page, 9 | // app, or any theme specific resource dictionaries) 10 | )] 11 | -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/autolispext.i18.helper.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | WinExe 5 | netcoreapp3.1 6 | true 7 | 8 | 9 | 10 | bin\Debug\ 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/autolispext.i18.helper.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Designer 7 | 8 | 9 | 10 | 11 | Designer 12 | 13 | 14 | -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.dll -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.exe -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.pdb -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\howar\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\howar\\.nuget\\packages", 6 | "C:\\Microsoft\\Xamarin\\NuGet", 7 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/bin/Debug/netcoreapp3.1/autolispext.i18.helper.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/images/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/autolispext.i18.helper/images/screen1.png -------------------------------------------------------------------------------- /utils/autolispext.i18.helper/images/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/autolispext.i18.helper/images/screen2.png -------------------------------------------------------------------------------- /utils/vscode-ripgrep/readme.txt: -------------------------------------------------------------------------------- 1 | They're downloaded from the following URL: 2 | 3 | https://github.com/microsoft/ripgrep-prebuilt/releases 4 | 5 | Current version: v11.0.1-2 6 | 7 | NOTE: 8 | The binary for Mac OS, "rg", can't be signed with VsixSignTool. As a workaround, we rename it to "rg.app". 9 | -------------------------------------------------------------------------------- /utils/vscode-ripgrep/ripgrep-v11.0.1-2-x86_64-apple-darwin/rg.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/vscode-ripgrep/ripgrep-v11.0.1-2-x86_64-apple-darwin/rg.app -------------------------------------------------------------------------------- /utils/vscode-ripgrep/ripgrep-v11.0.1-2-x86_64-pc-windows-msvc/rg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk-AutoCAD/AutoLispExt/78043d5279177c994682cfa427806d0d6a711fdf/utils/vscode-ripgrep/ripgrep-v11.0.1-2-x86_64-pc-windows-msvc/rg.exe -------------------------------------------------------------------------------- /winCompile.bat: -------------------------------------------------------------------------------- 1 | del out /S /Q /F 2 | 3 | call npm run compile 4 | 5 | echo copying acadProcessFinder.exe... 6 | copy utils\acadProcessFinder\bin\acadProcessFinder.exe out\process 7 | echo copying webHelpAbstraction.json... 8 | copy extension\src\help\webHelpAbstraction.json out\help 9 | --------------------------------------------------------------------------------