From 6ff387aabc96000bcd545b773f2890439b2bfd17 Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Fri, 26 May 2017 11:41:23 -0700 Subject: [PATCH 1/3] Fixes an issue where the NPM UI would not update on Install --- .../Nodejs/NpmUI/PackageCatalogEntryViewModel.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Nodejs/Product/Nodejs/NpmUI/PackageCatalogEntryViewModel.cs b/Nodejs/Product/Nodejs/NpmUI/PackageCatalogEntryViewModel.cs index 4020c4ab4..a329801dd 100644 --- a/Nodejs/Product/Nodejs/NpmUI/PackageCatalogEntryViewModel.cs +++ b/Nodejs/Product/Nodejs/NpmUI/PackageCatalogEntryViewModel.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Windows; using Microsoft.NodejsTools.Npm; namespace Microsoft.NodejsTools.NpmUI @@ -34,12 +35,26 @@ internal abstract class PackageCatalogEntryViewModel } public virtual string Name { get; } + + public string Version => this.version?.ToString() ?? string.Empty; + public IEnumerable AvailableVersions { get; } + public string Author { get; } + public Visibility AuthorVisibility => string.IsNullOrEmpty(this.Author) ? Visibility.Collapsed : Visibility.Visible; + public string Description { get; } + public Visibility DescriptionVisibility => string.IsNullOrEmpty(this.Description) ? Visibility.Collapsed : Visibility.Visible; + public IEnumerable Homepages { get; } + public Visibility HomepagesVisibility => this.Homepages.Any() ? Visibility.Visible : Visibility.Collapsed; + public string Keywords { get; } + public bool IsInstalledLocally => this.localVersion.HasValue; + public bool IsLocalInstallOutOfDate => this.localVersion.HasValue && this.localVersion < this.version; + public string LocalVersion => this.localVersion?.ToString() ?? string.Empty; + public override string ToString() { return this.Name; From 68a1c5e42d81bc5199ae10b6ee4e3f0501948df7 Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Fri, 26 May 2017 11:47:52 -0700 Subject: [PATCH 2/3] Fixes issue where the search icon would be overtyped with a long search query --- Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml b/Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml index f8f3896e9..e27e009f5 100644 --- a/Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml +++ b/Nodejs/Product/Nodejs/NpmUI/NpmPackageInstallWindow.xaml @@ -247,7 +247,8 @@ Text="{Binding FilterText,UpdateSourceTrigger=PropertyChanged}" PreviewKeyDown="FilterTextBox_PreviewKeyDown" TabIndex="0" - AutomationProperties.Name="{x:Static resx:NpmInstallWindowResources.SearchForPackagesLabel}" /> + AutomationProperties.Name="{x:Static resx:NpmInstallWindowResources.SearchForPackagesLabel}" + Padding="0,0,15,0"/> Date: Wed, 31 May 2017 11:00:11 -0700 Subject: [PATCH 3/3] Fix size of property page, and order of elements in narrator --- .../SharedProject/CommonPropertyPage.cs | 6 +- Nodejs/Product/Nodejs/Nodejs.csproj | 35 +- .../Project/NodejsGeneralPropertyPage.cs | 4 +- ...dejsGeneralPropertyPageControl.Designer.cs | 389 ++++++--- .../NodejsGeneralPropertyPageControl.cs | 30 +- .../NodejsGeneralPropertyPageControl.cs.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.de.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.en.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.es.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.fr.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.it.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.ja.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.ko.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.pl.resx | 786 ------------------ ...odejsGeneralPropertyPageControl.pt-BR.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.resx | 654 --------------- .../NodejsGeneralPropertyPageControl.ru.resx | 786 ------------------ .../NodejsGeneralPropertyPageControl.tr.resx | 786 ------------------ ...ejsGeneralPropertyPageControl.zh-Hans.resx | 786 ------------------ ...ejsGeneralPropertyPageControl.zh-Hant.resx | 786 ------------------ Nodejs/Product/Nodejs/Resources.Designer.cs | 119 ++- Nodejs/Product/Nodejs/Resources.cs.resx | 36 + Nodejs/Product/Nodejs/Resources.de.resx | 36 + Nodejs/Product/Nodejs/Resources.en.resx | 36 + Nodejs/Product/Nodejs/Resources.es.resx | 36 + Nodejs/Product/Nodejs/Resources.fr.resx | 36 + Nodejs/Product/Nodejs/Resources.it.resx | 36 + Nodejs/Product/Nodejs/Resources.ja.resx | 36 + Nodejs/Product/Nodejs/Resources.ko.resx | 36 + Nodejs/Product/Nodejs/Resources.pl.resx | 39 + Nodejs/Product/Nodejs/Resources.pt-BR.resx | 36 + Nodejs/Product/Nodejs/Resources.ru.resx | 36 + Nodejs/Product/Nodejs/Resources.tr.resx | 36 + Nodejs/Product/Nodejs/Resources.zh-Hans.resx | 36 + Nodejs/Product/Nodejs/Resources.zh-Hant.resx | 36 + 35 files changed, 911 insertions(+), 11837 deletions(-) delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.de.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.en.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.es.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.fr.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.it.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ja.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ko.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pl.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pt-BR.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ru.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.tr.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hans.resx delete mode 100644 Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hant.resx diff --git a/Common/Product/SharedProject/CommonPropertyPage.cs b/Common/Product/SharedProject/CommonPropertyPage.cs index d9df8a1ab..783fb224a 100644 --- a/Common/Product/SharedProject/CommonPropertyPage.cs +++ b/Common/Product/SharedProject/CommonPropertyPage.cs @@ -28,6 +28,8 @@ public abstract class CommonPropertyPage : IPropertyPage get; } + public virtual Size DefaultSize { get; } = new Size(800, 600); + public abstract void Apply(); public abstract void LoadSettings(); @@ -310,8 +312,8 @@ void IPropertyPage.GetPageInfo(PROPPAGEINFO[] pPageInfo) info.pszDocString = null; info.pszHelpFile = null; info.pszTitle = this.Name; - info.SIZE.cx = this.Control.Width; - info.SIZE.cy = this.Control.Height; + info.SIZE.cx = this.DefaultSize.Width; + info.SIZE.cy = this.DefaultSize.Height; pPageInfo[0] = info; } diff --git a/Nodejs/Product/Nodejs/Nodejs.csproj b/Nodejs/Product/Nodejs/Nodejs.csproj index 622ec219f..ad707b9fb 100644 --- a/Nodejs/Product/Nodejs/Nodejs.csproj +++ b/Nodejs/Product/Nodejs/Nodejs.csproj @@ -273,6 +273,12 @@ + + UserControl + + + NodejsGeneralPropertyPageControl.cs + @@ -455,12 +461,6 @@ - - UserControl - - - NodejsGeneralPropertyPageControl.cs - @@ -602,6 +602,10 @@ True Resources.en.resx + + NodejsGeneralPropertyPageControl.cs + Designer + Microsoft.NodejsTools.Resources.en ResXFileCodeGenerator @@ -742,25 +746,6 @@ - - - PublicResXFileCodeGenerator - NodejsGeneralPropertyPageControl.cs - - - - - - - - - - - - - - - PublicResXFileCodeGenerator diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPage.cs b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPage.cs index 0bad877f4..8f7371f77 100644 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPage.cs +++ b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPage.cs @@ -18,6 +18,7 @@ public NodejsGeneralPropertyPage() } public override System.Windows.Forms.Control Control => this._control; + internal override CommonProjectNode Project { get @@ -68,8 +69,7 @@ public override void LoadSettings() this._control.Environment = this.Project.GetUnevaluatedProperty(NodeProjectProperty.Environment); // Attempt to parse the boolean. If we fail, assume it is true. - bool startWebBrowser; - if (!Boolean.TryParse(this.Project.GetUnevaluatedProperty(NodeProjectProperty.StartWebBrowser), out startWebBrowser)) + if (!Boolean.TryParse(this.Project.GetUnevaluatedProperty(NodeProjectProperty.StartWebBrowser), out var startWebBrowser)) { startWebBrowser = true; } diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.Designer.cs b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.Designer.cs index e199c277e..51de7d7e0 100644 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.Designer.cs +++ b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.Designer.cs @@ -1,5 +1,7 @@ -namespace Microsoft.NodejsTools.Project { - partial class NodejsGeneralPropertyPageControl { +namespace Microsoft.NodejsTools.Project +{ + partial class NodejsGeneralPropertyPageControl + { /// /// Required designer variable. /// @@ -9,8 +11,10 @@ partial class NodejsGeneralPropertyPageControl { /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) { - if (disposing && (components != null)) { + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { components.Dispose(); } base.Dispose(disposing); @@ -22,217 +26,332 @@ partial class NodejsGeneralPropertyPageControl { /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// - private void InitializeComponent() { + private void InitializeComponent() + { this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NodejsGeneralPropertyPageControl)); this._nodeExePathLabel = new System.Windows.Forms.Label(); - this._nodeArguments = new System.Windows.Forms.Label(); - this._startBrowser = new System.Windows.Forms.CheckBox(); + this._nodeArgumentsLabel = new System.Windows.Forms.Label(); + this._scriptLabel = new System.Windows.Forms.Label(); + this._scriptArgsLabel = new System.Windows.Forms.Label(); + this._workingDirLabel = new System.Windows.Forms.Label(); + this._launchUrlLabel = new System.Windows.Forms.Label(); + this._nodePortLabel = new System.Windows.Forms.Label(); + this._debuggerPortLabel = new System.Windows.Forms.Label(); + this._envVarsLabel = new System.Windows.Forms.Label(); + this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this._nodeExePath = new System.Windows.Forms.TextBox(); + this._browsePath = new System.Windows.Forms.Button(); this._nodeExeArguments = new System.Windows.Forms.TextBox(); - this._nodejsPort = new System.Windows.Forms.TextBox(); - this._nodePortLabel = new System.Windows.Forms.Label(); - this._scriptArgsLabel = new System.Windows.Forms.Label(); + this._scriptFile = new System.Windows.Forms.TextBox(); + this._browseDirectory = new System.Windows.Forms.Button(); this._scriptArguments = new System.Windows.Forms.TextBox(); - this._workingDirLabel = new System.Windows.Forms.Label(); this._workingDir = new System.Windows.Forms.TextBox(); this._launchUrl = new System.Windows.Forms.TextBox(); - this._launchUrlLabel = new System.Windows.Forms.Label(); - this._tooltip = new System.Windows.Forms.ToolTip(this.components); + this._nodejsPort = new System.Windows.Forms.TextBox(); + this._debuggerPort = new System.Windows.Forms.TextBox(); this._envVars = new System.Windows.Forms.TextBox(); - this._browsePath = new System.Windows.Forms.Button(); - this._browseDirectory = new System.Windows.Forms.Button(); + this._startBrowser = new System.Windows.Forms.CheckBox(); + this._tooltip = new System.Windows.Forms.ToolTip(this.components); this._nodeExeErrorProvider = new System.Windows.Forms.ErrorProvider(this.components); - this._debuggerPortLabel = new System.Windows.Forms.Label(); - this._debuggerPort = new System.Windows.Forms.TextBox(); - this._envVarsLabel = new System.Windows.Forms.Label(); - this._scriptLabel = new System.Windows.Forms.Label(); - this._scriptFile = new System.Windows.Forms.TextBox(); + this.tableLayoutPanel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this._nodeExeErrorProvider)).BeginInit(); this.SuspendLayout(); // // _nodeExePathLabel // - resources.ApplyResources(this._nodeExePathLabel, "_nodeExePathLabel"); + this._nodeExePathLabel.AutoSize = true; + this._nodeExePathLabel.Location = new System.Drawing.Point(3, 3); + this._nodeExePathLabel.Margin = new System.Windows.Forms.Padding(3); this._nodeExePathLabel.Name = "_nodeExePathLabel"; + this._nodeExePathLabel.Size = new System.Drawing.Size(103, 13); + this._nodeExePathLabel.TabIndex = 0; + this._nodeExePathLabel.Text = "_nodeExePathLabel"; // - // _nodeArguments + // _nodeArgumentsLabel // - resources.ApplyResources(this._nodeArguments, "_nodeArguments"); - this._nodeArguments.Name = "_nodeArguments"; + this._nodeArgumentsLabel.AutoSize = true; + this._nodeArgumentsLabel.Location = new System.Drawing.Point(3, 32); + this._nodeArgumentsLabel.Margin = new System.Windows.Forms.Padding(3); + this._nodeArgumentsLabel.Name = "_nodeArgumentsLabel"; + this._nodeArgumentsLabel.Size = new System.Drawing.Size(87, 13); + this._nodeArgumentsLabel.TabIndex = 3; + this._nodeArgumentsLabel.Text = "_nodeArguments"; // - // _startBrowser - // - resources.ApplyResources(this._startBrowser, "_startBrowser"); - this._startBrowser.Name = "_startBrowser"; - this._startBrowser.UseVisualStyleBackColor = true; - this._startBrowser.CheckedChanged += new System.EventHandler(this.Changed); - // - // _nodeExePath - // - resources.ApplyResources(this._nodeExePath, "_nodeExePath"); - this._nodeExePath.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; - this._nodeExePath.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem; - this._nodeExePath.Name = "_nodeExePath"; - this._nodeExePath.TextChanged += new System.EventHandler(this.NodeExePathChanged); - // - // _nodeExeArguments - // - resources.ApplyResources(this._nodeExeArguments, "_nodeExeArguments"); - this._nodeExeArguments.Name = "_nodeExeArguments"; - this._nodeExeArguments.TextChanged += new System.EventHandler(this.Changed); - // - // _nodejsPort - // - resources.ApplyResources(this._nodejsPort, "_nodejsPort"); - this._nodejsPort.Name = "_nodejsPort"; - this._nodejsPort.TextChanged += new System.EventHandler(this.PortChanged); - // - // _nodePortLabel + // _scriptLabel // - resources.ApplyResources(this._nodePortLabel, "_nodePortLabel"); - this._nodePortLabel.Name = "_nodePortLabel"; + this._scriptLabel.AutoSize = true; + this._scriptLabel.Location = new System.Drawing.Point(3, 58); + this._scriptLabel.Margin = new System.Windows.Forms.Padding(3); + this._scriptLabel.Name = "_scriptLabel"; + this._scriptLabel.Size = new System.Drawing.Size(64, 13); + this._scriptLabel.TabIndex = 5; + this._scriptLabel.Text = "_scriptLabel"; // // _scriptArgsLabel // - resources.ApplyResources(this._scriptArgsLabel, "_scriptArgsLabel"); + this._scriptArgsLabel.AutoSize = true; + this._scriptArgsLabel.Location = new System.Drawing.Point(3, 87); + this._scriptArgsLabel.Margin = new System.Windows.Forms.Padding(3); this._scriptArgsLabel.Name = "_scriptArgsLabel"; - // - // _scriptArguments - // - resources.ApplyResources(this._scriptArguments, "_scriptArguments"); - this._scriptArguments.Name = "_scriptArguments"; - this._scriptArguments.TextChanged += new System.EventHandler(this.Changed); + this._scriptArgsLabel.Size = new System.Drawing.Size(85, 13); + this._scriptArgsLabel.TabIndex = 8; + this._scriptArgsLabel.Text = "_scriptArgsLabel"; // // _workingDirLabel // - resources.ApplyResources(this._workingDirLabel, "_workingDirLabel"); + this._workingDirLabel.AutoSize = true; + this._workingDirLabel.Location = new System.Drawing.Point(3, 113); + this._workingDirLabel.Margin = new System.Windows.Forms.Padding(3); this._workingDirLabel.Name = "_workingDirLabel"; + this._workingDirLabel.Size = new System.Drawing.Size(89, 13); + this._workingDirLabel.TabIndex = 10; + this._workingDirLabel.Text = "_workingDirLabel"; // - // _workingDir + // _launchUrlLabel // - resources.ApplyResources(this._workingDir, "_workingDir"); - this._workingDir.Name = "_workingDir"; - this._workingDir.TextChanged += new System.EventHandler(this.WorkingDirTextChanged); + this._launchUrlLabel.AutoSize = true; + this._launchUrlLabel.Location = new System.Drawing.Point(3, 139); + this._launchUrlLabel.Margin = new System.Windows.Forms.Padding(3); + this._launchUrlLabel.Name = "_launchUrlLabel"; + this._launchUrlLabel.Size = new System.Drawing.Size(84, 13); + this._launchUrlLabel.TabIndex = 12; + this._launchUrlLabel.Text = "_launchUrlLabel"; // - // _launchUrl + // _nodePortLabel // - resources.ApplyResources(this._launchUrl, "_launchUrl"); - this._launchUrl.Name = "_launchUrl"; - this._launchUrl.TextChanged += new System.EventHandler(this.Changed); + this._nodePortLabel.AutoSize = true; + this._nodePortLabel.Location = new System.Drawing.Point(3, 165); + this._nodePortLabel.Margin = new System.Windows.Forms.Padding(3); + this._nodePortLabel.Name = "_nodePortLabel"; + this._nodePortLabel.Size = new System.Drawing.Size(82, 13); + this._nodePortLabel.TabIndex = 14; + this._nodePortLabel.Text = "_nodePortLabel"; // - // _launchUrlLabel + // _debuggerPortLabel // - resources.ApplyResources(this._launchUrlLabel, "_launchUrlLabel"); - this._launchUrlLabel.Name = "_launchUrlLabel"; + this._debuggerPortLabel.AutoSize = true; + this._debuggerPortLabel.Location = new System.Drawing.Point(3, 191); + this._debuggerPortLabel.Margin = new System.Windows.Forms.Padding(3); + this._debuggerPortLabel.Name = "_debuggerPortLabel"; + this._debuggerPortLabel.Size = new System.Drawing.Size(103, 13); + this._debuggerPortLabel.TabIndex = 16; + this._debuggerPortLabel.Text = "_debuggerPortLabel"; // - // _envVars + // _envVarsLabel // - resources.ApplyResources(this._envVars, "_envVars"); - this._envVars.Name = "_envVars"; - this._envVars.TextChanged += new System.EventHandler(this.Changed); + this._envVarsLabel.AutoSize = true; + this._envVarsLabel.Location = new System.Drawing.Point(3, 217); + this._envVarsLabel.Margin = new System.Windows.Forms.Padding(3); + this._envVarsLabel.Name = "_envVarsLabel"; + this._envVarsLabel.Size = new System.Drawing.Size(78, 13); + this._envVarsLabel.TabIndex = 18; + this._envVarsLabel.Text = "_envVarsLabel"; + // + // tableLayoutPanel1 + // + this.tableLayoutPanel1.ColumnCount = 3; + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel1.Controls.Add(this._nodeExePathLabel, 0, 0); + this.tableLayoutPanel1.Controls.Add(this._nodeExePath, 1, 0); + this.tableLayoutPanel1.Controls.Add(this._browsePath, 2, 0); + this.tableLayoutPanel1.Controls.Add(this._nodeArgumentsLabel, 0, 1); + this.tableLayoutPanel1.Controls.Add(this._nodeExeArguments, 1, 1); + this.tableLayoutPanel1.Controls.Add(this._scriptLabel, 0, 2); + this.tableLayoutPanel1.Controls.Add(this._scriptFile, 1, 2); + this.tableLayoutPanel1.Controls.Add(this._browseDirectory, 2, 2); + this.tableLayoutPanel1.Controls.Add(this._scriptArgsLabel, 0, 3); + this.tableLayoutPanel1.Controls.Add(this._scriptArguments, 1, 3); + this.tableLayoutPanel1.Controls.Add(this._workingDirLabel, 0, 4); + this.tableLayoutPanel1.Controls.Add(this._workingDir, 1, 4); + this.tableLayoutPanel1.Controls.Add(this._launchUrlLabel, 0, 5); + this.tableLayoutPanel1.Controls.Add(this._launchUrl, 1, 5); + this.tableLayoutPanel1.Controls.Add(this._nodePortLabel, 0, 6); + this.tableLayoutPanel1.Controls.Add(this._nodejsPort, 1, 6); + this.tableLayoutPanel1.Controls.Add(this._debuggerPortLabel, 0, 7); + this.tableLayoutPanel1.Controls.Add(this._debuggerPort, 1, 7); + this.tableLayoutPanel1.Controls.Add(this._envVarsLabel, 0, 8); + this.tableLayoutPanel1.Controls.Add(this._envVars, 1, 8); + this.tableLayoutPanel1.Controls.Add(this._startBrowser, 0, 9); + this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); + this.tableLayoutPanel1.Name = "tableLayoutPanel1"; + this.tableLayoutPanel1.RowCount = 10; + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel1.Size = new System.Drawing.Size(800, 500); + this.tableLayoutPanel1.TabIndex = 0; + // + // _nodeExePath + // + this._nodeExePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._nodeExePath.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this._nodeExePath.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem; + this._nodeExePath.BackColor = System.Drawing.SystemColors.Window; + this._nodeExePath.Location = new System.Drawing.Point(112, 3); + this._nodeExePath.Name = "_nodeExePath"; + this._nodeExePath.Size = new System.Drawing.Size(620, 20); + this._nodeExePath.TabIndex = 1; + this._nodeExePath.TextChanged += new System.EventHandler(this.NodeExePathChanged); // // _browsePath // - resources.ApplyResources(this._browsePath, "_browsePath"); + this._browsePath.AutoSize = true; + this._browsePath.Location = new System.Drawing.Point(738, 3); this._browsePath.Name = "_browsePath"; + this._browsePath.Size = new System.Drawing.Size(26, 23); + this._browsePath.TabIndex = 2; + this._browsePath.Text = "..."; this._browsePath.UseVisualStyleBackColor = true; this._browsePath.Click += new System.EventHandler(this.BrowsePathClick); // + // _nodeExeArguments + // + this._nodeExeArguments.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._nodeExeArguments.Location = new System.Drawing.Point(112, 32); + this._nodeExeArguments.Name = "_nodeExeArguments"; + this._nodeExeArguments.Size = new System.Drawing.Size(620, 20); + this._nodeExeArguments.TabIndex = 4; + // + // _scriptFile + // + this._scriptFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._scriptFile.Location = new System.Drawing.Point(112, 58); + this._scriptFile.Name = "_scriptFile"; + this._scriptFile.Size = new System.Drawing.Size(620, 20); + this._scriptFile.TabIndex = 6; + // // _browseDirectory // - resources.ApplyResources(this._browseDirectory, "_browseDirectory"); + this._browseDirectory.AutoSize = true; + this._browseDirectory.Location = new System.Drawing.Point(738, 58); this._browseDirectory.Name = "_browseDirectory"; + this._browseDirectory.Size = new System.Drawing.Size(26, 23); + this._browseDirectory.TabIndex = 7; + this._browseDirectory.Text = "..."; this._browseDirectory.UseVisualStyleBackColor = true; this._browseDirectory.Click += new System.EventHandler(this.BrowseDirectoryClick); // - // _nodeExeErrorProvider + // _scriptArguments // - this._nodeExeErrorProvider.ContainerControl = this; + this._scriptArguments.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._scriptArguments.Location = new System.Drawing.Point(112, 87); + this._scriptArguments.Name = "_scriptArguments"; + this._scriptArguments.Size = new System.Drawing.Size(620, 20); + this._scriptArguments.TabIndex = 9; // - // _debuggerPortLabel + // _workingDir // - resources.ApplyResources(this._debuggerPortLabel, "_debuggerPortLabel"); - this._debuggerPortLabel.Name = "_debuggerPortLabel"; + this._workingDir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._workingDir.Location = new System.Drawing.Point(112, 113); + this._workingDir.Name = "_workingDir"; + this._workingDir.Size = new System.Drawing.Size(620, 20); + this._workingDir.TabIndex = 11; + this._workingDir.TextChanged += new System.EventHandler(this.WorkingDirChanged); + // + // _launchUrl + // + this._launchUrl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._launchUrl.Location = new System.Drawing.Point(112, 139); + this._launchUrl.Name = "_launchUrl"; + this._launchUrl.Size = new System.Drawing.Size(620, 20); + this._launchUrl.TabIndex = 13; + // + // _nodejsPort + // + this._nodejsPort.Location = new System.Drawing.Point(112, 165); + this._nodejsPort.Name = "_nodejsPort"; + this._nodejsPort.Size = new System.Drawing.Size(105, 20); + this._nodejsPort.TabIndex = 15; + this._nodejsPort.TextChanged += new System.EventHandler(this.PortChanged); // // _debuggerPort // - resources.ApplyResources(this._debuggerPort, "_debuggerPort"); + this._debuggerPort.Location = new System.Drawing.Point(112, 191); this._debuggerPort.Name = "_debuggerPort"; - this._debuggerPort.TextChanged += new System.EventHandler(this.PortChanged); + this._debuggerPort.Size = new System.Drawing.Size(105, 20); + this._debuggerPort.TabIndex = 17; // - // _envVarsLabel + // _envVars // - resources.ApplyResources(this._envVarsLabel, "_envVarsLabel"); - this._envVarsLabel.Name = "_envVarsLabel"; + this._envVars.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this._envVars.Location = new System.Drawing.Point(112, 217); + this._envVars.Multiline = true; + this._envVars.Name = "_envVars"; + this._envVars.ScrollBars = System.Windows.Forms.ScrollBars.Both; + this._envVars.Size = new System.Drawing.Size(620, 84); + this._envVars.TabIndex = 19; // - // _scriptLabel + // _startBrowser // - resources.ApplyResources(this._scriptLabel, "_scriptLabel"); - this._scriptLabel.Name = "_scriptLabel"; + this._startBrowser.AutoSize = true; + this.tableLayoutPanel1.SetColumnSpan(this._startBrowser, 3); + this._startBrowser.Location = new System.Drawing.Point(3, 307); + this._startBrowser.Name = "_startBrowser"; + this._startBrowser.Size = new System.Drawing.Size(90, 17); + this._startBrowser.TabIndex = 20; + this._startBrowser.Text = "_startBrowser"; + this._startBrowser.UseVisualStyleBackColor = true; // - // _scriptFile + // _nodeExeErrorProvider // - resources.ApplyResources(this._scriptFile, "_scriptFile"); - this._scriptFile.Name = "_scriptFile"; - this._scriptFile.TextChanged += new System.EventHandler(this.Changed); + this._nodeExeErrorProvider.ContainerControl = this; // // NodejsGeneralPropertyPageControl // - resources.ApplyResources(this, "$this"); + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this._scriptLabel); - this.Controls.Add(this._scriptFile); - this.Controls.Add(this._envVarsLabel); - this.Controls.Add(this._envVars); - this.Controls.Add(this._debuggerPort); - this.Controls.Add(this._debuggerPortLabel); - this.Controls.Add(this._browseDirectory); - this.Controls.Add(this._browsePath); - this.Controls.Add(this._nodePortLabel); - this.Controls.Add(this._launchUrlLabel); - this.Controls.Add(this._workingDirLabel); - this.Controls.Add(this._scriptArgsLabel); - this.Controls.Add(this._nodeArguments); - this.Controls.Add(this._nodeExePathLabel); - this.Controls.Add(this._startBrowser); - this.Controls.Add(this._nodejsPort); - this.Controls.Add(this._launchUrl); - this.Controls.Add(this._workingDir); - this.Controls.Add(this._scriptArguments); - this.Controls.Add(this._nodeExeArguments); - this.Controls.Add(this._nodeExePath); + this.Controls.Add(this.tableLayoutPanel1); + this.MinimumSize = new System.Drawing.Size(850, 550); this.Name = "NodejsGeneralPropertyPageControl"; + this.Size = new System.Drawing.Size(850, 550); + this.tableLayoutPanel1.ResumeLayout(false); + this.tableLayoutPanel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this._nodeExeErrorProvider)).EndInit(); this.ResumeLayout(false); - this.PerformLayout(); } #endregion - private System.Windows.Forms.Label _nodeExePathLabel; - private System.Windows.Forms.Label _nodeArguments; - private System.Windows.Forms.CheckBox _startBrowser; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; private System.Windows.Forms.TextBox _nodeExePath; + private System.Windows.Forms.Button _browsePath; private System.Windows.Forms.TextBox _nodeExeArguments; - private System.Windows.Forms.TextBox _nodejsPort; - private System.Windows.Forms.Label _nodePortLabel; - private System.Windows.Forms.Label _scriptArgsLabel; + private System.Windows.Forms.TextBox _scriptFile; + private System.Windows.Forms.Button _browseDirectory; private System.Windows.Forms.TextBox _scriptArguments; - private System.Windows.Forms.Label _workingDirLabel; private System.Windows.Forms.TextBox _workingDir; private System.Windows.Forms.TextBox _launchUrl; - private System.Windows.Forms.Label _launchUrlLabel; + private System.Windows.Forms.TextBox _nodejsPort; + private System.Windows.Forms.TextBox _debuggerPort; + private System.Windows.Forms.TextBox _envVars; + private System.Windows.Forms.CheckBox _startBrowser; private System.Windows.Forms.ToolTip _tooltip; - private System.Windows.Forms.Button _browsePath; - private System.Windows.Forms.Button _browseDirectory; private System.Windows.Forms.ErrorProvider _nodeExeErrorProvider; - private System.Windows.Forms.Label _envVarsLabel; - private System.Windows.Forms.TextBox _envVars; - private System.Windows.Forms.TextBox _debuggerPort; - private System.Windows.Forms.Label _debuggerPortLabel; + private System.Windows.Forms.Label _nodeExePathLabel; + private System.Windows.Forms.Label _nodeArgumentsLabel; private System.Windows.Forms.Label _scriptLabel; - private System.Windows.Forms.TextBox _scriptFile; + private System.Windows.Forms.Label _scriptArgsLabel; + private System.Windows.Forms.Label _workingDirLabel; + private System.Windows.Forms.Label _launchUrlLabel; + private System.Windows.Forms.Label _nodePortLabel; + private System.Windows.Forms.Label _debuggerPortLabel; + private System.Windows.Forms.Label _envVarsLabel; } } diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs index d560e5992..5a06b0281 100644 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs +++ b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Drawing; @@ -19,9 +19,10 @@ public NodejsGeneralPropertyPageControl() { InitializeComponent(); + LocalizeLabels(); SetCueBanner(); - AddToolTips(); + this._nodeExeErrorProvider.SetIconAlignment(this._nodeExePath, ErrorIconAlignment.MiddleLeft); this._nodeExeErrorProvider.SetIconAlignment(this._workingDir, ErrorIconAlignment.MiddleLeft); } @@ -31,6 +32,26 @@ public NodejsGeneralPropertyPageControl(NodejsGeneralPropertyPage page) : this() this._propPage = page; } + private void LocalizeLabels() + { + // There's a bug in winforms, where if you use the default localization infra structure + // the control is correctly sized in the property page. + + this._nodeExePathLabel.Text = Resources.PropertiesNodeExePath; + this._nodeArgumentsLabel.Text = Resources.PropertiesNodeExeOptions; + this._scriptLabel.Text = Resources.PropertiesScript; + this._scriptArgsLabel.Text = Resources.PropertiesScriptArgs; + this._workingDirLabel.Text = Resources.PropertiesWorkingDir; + this._launchUrlLabel.Text = Resources.PropertiesLaunchUrl; + this._nodePortLabel.Text = Resources.PropertiesNodePort; + this._debuggerPortLabel.Text = Resources.PropertiesDebuggerPort; + this._envVarsLabel.Text = Resources.PropertiesEnvVars; + this._startBrowser.Text = Resources.PropertiesStartBrowser; + + this._browsePath.AccessibleName = Resources.PropertiesBrowsePathAccessibleName; + this._browsePath.AccessibleName = Resources.PropertiesBrowseDirectoryAccessibleName; + } + private void AddToolTips() { this._tooltip.SetToolTip(this._nodeExePath, Resources.NodeExePathToolTip); @@ -141,7 +162,7 @@ public string LaunchUrl } } - private static Regex lfToCrLfRegex = new Regex(@"(? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Cesta k souboru Node.exe: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - N&ode.exe – možnosti: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - &Při spouštění spustit webový prohlížeč - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Port Node.&js: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Ar&gumenty skriptu: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - &Pracovní adresář: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - Spustit &URL: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Skript (spouštěcí soubor): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - &Proměnné prostředí: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Port ladicího programu: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.de.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.de.resx deleted file mode 100644 index 690abe399..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.de.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Pfad für "Node.exe": - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - &Optionen für "Node.exe": - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - Webbrowser beim St&art öffnen - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.&js-Port: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Skriptar&gumente: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Arbeitsver&zeichnis: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - Start-&URL: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Skript (Startdatei): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - Umgebungs&variablen: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Debuggerport: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.en.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.en.resx deleted file mode 100644 index 3f1642b65..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.en.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe &path: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - N&ode.exe options: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - St&art web browser on launch - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.&js port: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Script ar&guments: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Working director&y: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - Launch &URL: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Script (startup file): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - Environment &Variables: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Debugger port: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.es.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.es.resx deleted file mode 100644 index ec57c4c67..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.es.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Ruta de acceso de Node.exe: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Opciones de N&ode.exe: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - Ini&ciar explorador web al inicio - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Puerto de Node.&js: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Ar&gumentos de script: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Director&io de trabajo: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - &URL de inicio: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Script (archivo de inicio): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - &Variables de entorno: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Puerto del depurador: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.fr.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.fr.resx deleted file mode 100644 index 8caca8387..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.fr.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Chemin de Node.exe : - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Options de N&ode.exe : - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - Dém&arrer le navigateur web au lancement - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Port de Node.&js : - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Ar&guments de script : - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Répertoire de &travail : - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - &URL de lancement : - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Script (fichier de démarrage) : - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - &Variables d'environnement : - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Port du débogueur : - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.it.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.it.resx deleted file mode 100644 index 0ccd8b791..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.it.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Percorso di Node.exe: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Opzioni di N&ode.exe: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - &Avvia il Web browser all'avvio - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Porta di Node.&js: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Ar&gomenti dello script: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Director&y di lavoro: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - &URL di avvio: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Script (file di avvio): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - &Variabili di ambiente: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Porta del debugger: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ja.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ja.resx deleted file mode 100644 index abbcdc673..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ja.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe のパス(&P): - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Node.exe オプション(&O): - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - 起動時に Web ブラウザーを開始(&A) - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.js ポート(&J): - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - スクリプトの引数(&G): - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - 作業ディレクトリ(&Y): - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - 起動 URL(&U): - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - スクリプト (スタートアップ ファイル)(&S): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - 環境変数(&V): - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - デバッガー ポート(&D): - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ko.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ko.resx deleted file mode 100644 index 7164df56e..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ko.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe 경로(&P): - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - N&ode.exe 옵션(&O): - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - 시작 시 웹 브라우저 시작(&A) - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.js 포트(&J): - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - 스크립트 인수(&G): - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - 작업 디렉터리(&Y): - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - 시작 URL(&U): - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - 스크립트(시작 파일)(&S): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - 환경 변수(&V): - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - 디버거 포트(&D): - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pl.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pl.resx deleted file mode 100644 index 17ea8b8a7..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pl.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Ścieżka do &programu node.exe: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Opcje programu n&ode.exe: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - &Uruchom przeglądarkę sieci Web przy uruchamianiu - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Port programu node.&js: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Ar&gumenty skryptu: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Katalog robocz&y: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - Adres &URL uruchamiania: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Skrypt (plik startowy): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - &Zmienne środowiskowe: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Port debugera: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pt-BR.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pt-BR.resx deleted file mode 100644 index 36682f6cb..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.pt-BR.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Caminho do Node.exe - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Opções do N&ode.exe: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - I&niciar o navegador da web durante a inicialização - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Porta do Node.&js: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Arg&umentos de script: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Dir&etório de trabalho: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - &URL de inicialização: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Script (arquivo de inicialização): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - Va&riáveis de ambiente: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Porta do depurador: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.resx index f18cf712b..5f3b575f0 100644 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.resx +++ b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.resx @@ -117,664 +117,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe &path: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - N&ode.exe options: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - St&art web browser on launch - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.&js port: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Script ar&guments: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Working director&y: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - Launch &URL: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - 17, 17 - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - 110, 17 - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Script (startup file): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - Environment &Variables: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Debugger port: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - \ No newline at end of file diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ru.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ru.resx deleted file mode 100644 index 34b3e9ed5..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.ru.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - &Путь к Node.exe: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Параметр&ы Node.exe: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - &Открывать браузер при запуске - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Пор&т Node.js: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Аргу&менты скрипта: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Рабочий катало&г: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - URL-адрес з&апуска: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Скрипт (файл автозагрузки): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - Переменн&ые среды: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Порт отладчика: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.tr.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.tr.resx deleted file mode 100644 index 9deb23327..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.tr.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe &yolu: - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - N&ode.exe seçenekleri: - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - B&aşlangıçta web tarayıcısını başlat - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.&js bağlantı noktası: - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - Betik bağı&msız değişkenleri: - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - Çalışma dizi&ni: - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - &URL'yi başlat: - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - &Betik (başlangıç dosyası): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - Ortam &Değişkenleri: - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - &Hata ayıklayıcısı bağlantı noktası: - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hans.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hans.resx deleted file mode 100644 index f22c0b385..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hans.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe 路径(&P): - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Node.exe 选项(&O): - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - 启动时启动 web 浏览器(&A) - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.js 端口(&J): - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - 脚本参数(&G): - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - 工作目录(&Y): - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - 启动 URL (&U): - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - 脚本(启动文件) (&S): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - 环境变量(&V): - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - 调试程序端口(&D): - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hant.resx b/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hant.resx deleted file mode 100644 index e9afc982d..000000000 --- a/Nodejs/Product/Nodejs/Project/NodejsGeneralPropertyPageControl.zh-Hant.resx +++ /dev/null @@ -1,786 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - True - - - - Microsoft Sans Serif, 8.25pt - - - 20, 42 - - - 80, 13 - - - 0 - - - Node.exe 路徑(&P): - - - _nodeExePathLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 13 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 86 - - - 93, 13 - - - 3 - - - Node.exe 選項(&O): - - - _nodeArguments - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 12 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 22, 500 - - - 161, 17 - - - 20 - - - 啟動時開啟網頁瀏覽器(&A) - - - _startBrowser - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 14 - - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 42 - - - 843, 20 - - - 1 - - - _nodeExePath - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 20 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 86 - - - 889, 20 - - - 4 - - - _nodeExeArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 19 - - - Microsoft Sans Serif, 8.25pt - - - 277, 303 - - - 105, 20 - - - 15 - - - _nodejsPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 15 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 303 - - - 67, 13 - - - 14 - - - Node.js 連接埠(&J): - - - _nodePortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 8 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 173 - - - 89, 13 - - - 7 - - - 編寫引數(&G): - - - _scriptArgsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 11 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 173 - - - 889, 20 - - - 8 - - - _scriptArguments - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 18 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 216 - - - 93, 13 - - - 9 - - - 工作目錄(&Y): - - - _workingDirLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 10 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 216 - - - 843, 20 - - - 10 - - - _workingDir - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 260 - - - 889, 20 - - - 13 - - - _launchUrl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 16 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 260 - - - 71, 13 - - - 12 - - - 啟動 URL(&U): - - - _launchUrlLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 9 - - - 17, 17 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 390 - - - True - - - Both - - - 889, 84 - - - 19 - - - _envVars - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 42 - - - 26, 23 - - - 2 - - - ... - - - Browse for node.exe - - - _browsePath - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 7 - - - Top, Right - - - True - - - GrowAndShrink - - - Microsoft Sans Serif, 8.25pt - - - 1140, 216 - - - 26, 23 - - - 11 - - - ... - - - Browse for working directory - - - _browseDirectory - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 110, 17 - - - True - - - 6, 13 - - - True - - - GrowAndShrink - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 130 - - - 94, 13 - - - 5 - - - 編寫 (啟動檔案)(&S): - - - _scriptLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - Top, Left, Right - - - Microsoft Sans Serif, 8.25pt - - - 277, 130 - - - 889, 20 - - - 6 - - - _scriptFile - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 390 - - - 115, 13 - - - 18 - - - 環境變數(&V): - - - _envVarsLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 2 - - - Microsoft Sans Serif, 8.25pt - - - 277, 346 - - - 105, 20 - - - 17 - - - _debuggerPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - - - True - - - Microsoft Sans Serif, 8.25pt - - - 20, 346 - - - 78, 13 - - - 16 - - - 偵錯工具連接埠(&D): - - - _debuggerPortLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 5 - - - 1200, 550 - - - 1200, 550 - - - _tooltip - - - System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - _nodeExeErrorProvider - - - System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NodejsGeneralPropertyPageControl - - - System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Nodejs/Product/Nodejs/Resources.Designer.cs b/Nodejs/Product/Nodejs/Resources.Designer.cs index fe837aa87..53468cc69 100644 --- a/Nodejs/Product/Nodejs/Resources.Designer.cs +++ b/Nodejs/Product/Nodejs/Resources.Designer.cs @@ -660,16 +660,7 @@ public class Resources { return ResourceManager.GetString("NodejsToolsForVisualStudio", resourceCulture); } } -#if !DEV15 - /// - /// Looks up a localized string similar to Your project is configured to use Node V8 or newer. Debugging Node V8 is not supported in VS 2015, please upgrade to VS 2017.. - /// - public static string NodejsVersionNotSupported { - get { - return ResourceManager.GetString("NodejsVersionNotSupported", resourceCulture); - } - } -#endif + /// /// Looks up a localized string similar to Unable to parse {0} from your project. Please fix any errors and try again.. /// @@ -1250,6 +1241,24 @@ public class Resources { } } + /// + /// Looks up a localized string similar to Browse for working directory. + /// + public static string PropertiesBrowseDirectoryAccessibleName { + get { + return ResourceManager.GetString("PropertiesBrowseDirectoryAccessibleName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Browse for node.exe. + /// + public static string PropertiesBrowsePathAccessibleName { + get { + return ResourceManager.GetString("PropertiesBrowsePathAccessibleName", resourceCulture); + } + } + /// /// Looks up a localized string similar to Local Package Properties. /// @@ -1277,6 +1286,96 @@ public class Resources { } } + /// + /// Looks up a localized string similar to &Debugger port:. + /// + public static string PropertiesDebuggerPort { + get { + return ResourceManager.GetString("PropertiesDebuggerPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Environment &Variables:. + /// + public static string PropertiesEnvVars { + get { + return ResourceManager.GetString("PropertiesEnvVars", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Launch &URL:. + /// + public static string PropertiesLaunchUrl { + get { + return ResourceManager.GetString("PropertiesLaunchUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to N&ode.exe options:. + /// + public static string PropertiesNodeExeOptions { + get { + return ResourceManager.GetString("PropertiesNodeExeOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Node.exe &path:. + /// + public static string PropertiesNodeExePath { + get { + return ResourceManager.GetString("PropertiesNodeExePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Node.&js port:. + /// + public static string PropertiesNodePort { + get { + return ResourceManager.GetString("PropertiesNodePort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Script (startup file):. + /// + public static string PropertiesScript { + get { + return ResourceManager.GetString("PropertiesScript", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Script ar&guments:. + /// + public static string PropertiesScriptArgs { + get { + return ResourceManager.GetString("PropertiesScriptArgs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to St&art web browser on launch. + /// + public static string PropertiesStartBrowser { + get { + return ResourceManager.GetString("PropertiesStartBrowser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Working director&y:. + /// + public static string PropertiesWorkingDir { + get { + return ResourceManager.GetString("PropertiesWorkingDir", resourceCulture); + } + } + /// /// Looks up a localized string similar to Make sure that the process is running behind the remote debug proxy (RemoteDebug.js), and the debugger port (default {0}) is open on the target host.. /// diff --git a/Nodejs/Product/Nodejs/Resources.cs.resx b/Nodejs/Product/Nodejs/Resources.cs.resx index 5ce396a42..8b35fc0f8 100644 --- a/Nodejs/Product/Nodejs/Resources.cs.resx +++ b/Nodejs/Product/Nodejs/Resources.cs.resx @@ -620,4 +620,40 @@ Při načítání informací o serveru proxy pro ladění websocketu ze souboru Adres URL pro spuštění {0} není platná. + + N&ode.exe – možnosti: + + + &Cesta k souboru Node.exe: + + + &Port ladicího programu: + + + &Proměnné prostředí: + + + Spustit &URL: + + + Port Node.&js: + + + &Skript (spouštěcí soubor): + + + Ar&gumenty skriptu: + + + &Při spouštění spustit webový prohlížeč + + + &Pracovní adresář: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.de.resx b/Nodejs/Product/Nodejs/Resources.de.resx index acfb55994..876194ae2 100644 --- a/Nodejs/Product/Nodejs/Resources.de.resx +++ b/Nodejs/Product/Nodejs/Resources.de.resx @@ -620,4 +620,40 @@ Fehler beim Abrufen von Informationen zum Websocket-Debugproxy von "web.con Die Start-URL "{0}" ist ungültig. + + &Optionen für "Node.exe": + + + &Pfad für "Node.exe": + + + &Debuggerport: + + + Umgebungs&variablen: + + + Start-&URL: + + + Node.&js-Port: + + + &Skript (Startdatei): + + + Skriptar&gumente: + + + Webbrowser beim St&art öffnen + + + Arbeitsver&zeichnis: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.en.resx b/Nodejs/Product/Nodejs/Resources.en.resx index f148eb88a..5b672b7eb 100644 --- a/Nodejs/Product/Nodejs/Resources.en.resx +++ b/Nodejs/Product/Nodejs/Resources.en.resx @@ -620,4 +620,40 @@ Error retrieving websocket debug proxy information from web.config. Launch url '{0}' is not valid + + N&ode.exe options: + + + Node.exe &path: + + + &Debugger port: + + + Environment &Variables: + + + Launch &URL: + + + Node.&js port: + + + &Script (startup file): + + + Script ar&guments: + + + St&art web browser on launch + + + Working director&y: + + + Browse for node.exe + + + Browse for working directory + \ No newline at end of file diff --git a/Nodejs/Product/Nodejs/Resources.es.resx b/Nodejs/Product/Nodejs/Resources.es.resx index cbf49027b..96143af0d 100644 --- a/Nodejs/Product/Nodejs/Resources.es.resx +++ b/Nodejs/Product/Nodejs/Resources.es.resx @@ -620,4 +620,40 @@ Error al recuperar la información del proxy de depuración de WebSocket de web. La dirección URL de inicio '{0}' no es válida + + Opciones de N&ode.exe: + + + &Ruta de acceso de Node.exe: + + + &Puerto del depurador: + + + &Variables de entorno: + + + &URL de inicio: + + + Puerto de Node.&js: + + + &Script (archivo de inicio): + + + Ar&gumentos de script: + + + Ini&ciar explorador web al inicio + + + Director&io de trabajo: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.fr.resx b/Nodejs/Product/Nodejs/Resources.fr.resx index ab4fa64f2..53e19b65c 100644 --- a/Nodejs/Product/Nodejs/Resources.fr.resx +++ b/Nodejs/Product/Nodejs/Resources.fr.resx @@ -620,4 +620,40 @@ Erreur pendant la récupération des informations de proxy de débogage websocke L'URL de lancement '{0}' n'est pas valide + + Options de N&ode.exe : + + + &Chemin de Node.exe : + + + &Port du débogueur : + + + &Variables d'environnement : + + + &URL de lancement : + + + Port de Node.&js : + + + &Script (fichier de démarrage) : + + + Ar&guments de script : + + + Dém&arrer le navigateur web au lancement + + + Répertoire de &travail : + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.it.resx b/Nodejs/Product/Nodejs/Resources.it.resx index 40c262893..72ec50703 100644 --- a/Nodejs/Product/Nodejs/Resources.it.resx +++ b/Nodejs/Product/Nodejs/Resources.it.resx @@ -620,4 +620,40 @@ Si è verificato un errore durante il recupero delle informazioni sul proxy di d L'URL di avvio '{0}' non è valido + + Opzioni di N&ode.exe: + + + &Percorso di Node.exe: + + + &Porta del debugger: + + + &Variabili di ambiente: + + + &URL di avvio: + + + Porta di Node.&js: + + + &Script (file di avvio): + + + Ar&gomenti dello script: + + + &Avvia il Web browser all'avvio + + + Director&y di lavoro: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.ja.resx b/Nodejs/Product/Nodejs/Resources.ja.resx index 28026a7c9..f21bf3687 100644 --- a/Nodejs/Product/Nodejs/Resources.ja.resx +++ b/Nodejs/Product/Nodejs/Resources.ja.resx @@ -620,4 +620,40 @@ web.config から websocket デバッグ プロキシ情報を取得しようと 起動 URL '{0}' が正しくありません + + Node.exe オプション(&O): + + + Node.exe のパス(&P): + + + デバッガー ポート(&D): + + + 環境変数(&V): + + + 起動 URL(&U): + + + Node.js ポート(&J): + + + スクリプト (スタートアップ ファイル)(&S): + + + スクリプトの引数(&G): + + + 起動時に Web ブラウザーを開始(&A) + + + 作業ディレクトリ(&Y): + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.ko.resx b/Nodejs/Product/Nodejs/Resources.ko.resx index c8ea42e95..559150133 100644 --- a/Nodejs/Product/Nodejs/Resources.ko.resx +++ b/Nodejs/Product/Nodejs/Resources.ko.resx @@ -620,4 +620,40 @@ web.config에서 websocket 디버그 프록시 정보를 검색하는 동안 오 시작 URL '{0}'이(가) 잘못되었습니다. + + N&ode.exe 옵션(&O): + + + Node.exe 경로(&P): + + + 디버거 포트(&D): + + + 환경 변수(&V): + + + 시작 URL(&U): + + + Node.js 포트(&J): + + + 스크립트(시작 파일)(&S): + + + 스크립트 인수(&G): + + + 시작 시 웹 브라우저 시작(&A) + + + 작업 디렉터리(&Y): + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.pl.resx b/Nodejs/Product/Nodejs/Resources.pl.resx index 6a117058a..e7496eb39 100644 --- a/Nodejs/Product/Nodejs/Resources.pl.resx +++ b/Nodejs/Product/Nodejs/Resources.pl.resx @@ -620,4 +620,43 @@ Błąd podczas pobierania informacji o serwerze proxy debugowania websocket z pl Adres URL uruchamiania „{0}” jest nieprawidłowy + + Adres URL pro spuštění {0} není platná. + + + Opcje programu n&ode.exe: + + + Ścieżka do &programu node.exe: + + + &Port debugera: + + + &Zmienne środowiskowe: + + + Adres &URL uruchamiania: + + + Port programu node.&js: + + + &Skrypt (plik startowy): + + + Ar&gumenty skryptu: + + + &Uruchom przeglądarkę sieci Web przy uruchamianiu + + + Katalog robocz&y: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.pt-BR.resx b/Nodejs/Product/Nodejs/Resources.pt-BR.resx index d84169be4..bb90edeeb 100644 --- a/Nodejs/Product/Nodejs/Resources.pt-BR.resx +++ b/Nodejs/Product/Nodejs/Resources.pt-BR.resx @@ -621,4 +621,40 @@ Node.js no Windows 8 e superiores. A URL de inicialização '{0}' não é válida + + Opções do N&ode.exe: + + + &Caminho do Node.exe + + + &Porta do depurador: + + + Va&riáveis de ambiente: + + + &URL de inicialização: + + + Porta do Node.&js: + + + &Script (arquivo de inicialização): + + + Arg&umentos de script: + + + I&niciar o navegador da web durante a inicialização + + + Dir&etório de trabalho: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.ru.resx b/Nodejs/Product/Nodejs/Resources.ru.resx index bd332d85d..19d354df7 100644 --- a/Nodejs/Product/Nodejs/Resources.ru.resx +++ b/Nodejs/Product/Nodejs/Resources.ru.resx @@ -619,4 +619,40 @@ Недопустимый URL-адрес запуска "{0}" + + Параметр&ы Node.exe: + + + &Путь к Node.exe: + + + &Порт отладчика: + + + Переменн&ые среды: + + + URL-адрес з&апуска: + + + Porta do Node.&js: + + + &Скрипт (файл автозагрузки): + + + Аргу&менты скрипта: + + + &Открывать браузер при запуске + + + Рабочий катало&г: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.tr.resx b/Nodejs/Product/Nodejs/Resources.tr.resx index 563847da6..8d4921ec5 100644 --- a/Nodejs/Product/Nodejs/Resources.tr.resx +++ b/Nodejs/Product/Nodejs/Resources.tr.resx @@ -620,4 +620,40 @@ Web.config dosyasından websocket hata ayıklama proxy'si bilgileri alını '{0}' başlatma URL'si geçerli değil + + N&ode.exe seçenekleri: + + + Node.exe &yolu: + + + &Hata ayıklayıcısı bağlantı noktası: + + + Ortam &Değişkenleri: + + + &URL'yi başlat: + + + Node.&js bağlantı noktası: + + + &Betik (başlangıç dosyası): + + + Betik bağı&msız değişkenleri: + + + B&aşlangıçta web tarayıcısını başlat + + + Çalışma dizi&ni: + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.zh-Hans.resx b/Nodejs/Product/Nodejs/Resources.zh-Hans.resx index 99949bbee..cc8e25b7f 100644 --- a/Nodejs/Product/Nodejs/Resources.zh-Hans.resx +++ b/Nodejs/Product/Nodejs/Resources.zh-Hans.resx @@ -620,4 +620,40 @@ NAME2=value2 启动 URL“{0}”无效 + + Node.exe 选项(&O): + + + Node.exe 路径(&P): + + + 调试程序端口(&D): + + + 环境变量(&V): + + + 启动 URL (&U): + + + Node.js 端口(&J): + + + 脚本(启动文件) (&S): + + + 脚本参数(&G): + + + 启动时启动 web 浏览器(&A) + + + 工作目录(&Y): + + + Browse for node.exe + + + Browse for working directory + diff --git a/Nodejs/Product/Nodejs/Resources.zh-Hant.resx b/Nodejs/Product/Nodejs/Resources.zh-Hant.resx index 0190bcd7b..3f065c8c4 100644 --- a/Nodejs/Product/Nodejs/Resources.zh-Hant.resx +++ b/Nodejs/Product/Nodejs/Resources.zh-Hant.resx @@ -620,4 +620,40 @@ NAME2=value2 啟動 URL '{0}' 無效 + + Node.exe 選項(&O): + + + Node.exe 路徑(&P): + + + 偵錯工具連接埠(&D): + + + 環境變數(&V): + + + 啟動 URL(&U): + + + Node.js 連接埠(&J): + + + 編寫 (啟動檔案)(&S): + + + 編寫引數(&G): + + + 啟動時開啟網頁瀏覽器(&A) + + + 工作目錄(&Y): + + + Browse for node.exe + + + Browse for working directory +