Version 1.4.231

Fixed charging light not saving (thanks tehmantra)
Truly finished Italian Translation
This commit is contained in:
jays2kings 2015-02-10 16:45:56 -05:00
parent 7d7d5d7391
commit 0cb77ad07f
9 changed files with 3240 additions and 2770 deletions

View File

@ -119,6 +119,7 @@
this.cBCloseMini = new System.Windows.Forms.CheckBox(); this.cBCloseMini = new System.Windows.Forms.CheckBox();
this.cBQuickCharge = new System.Windows.Forms.CheckBox(); this.cBQuickCharge = new System.Windows.Forms.CheckBox();
this.cBUpdate = new System.Windows.Forms.CheckBox(); this.cBUpdate = new System.Windows.Forms.CheckBox();
this.cBDownloadLangauge = new System.Windows.Forms.CheckBox();
this.pNUpdate = new System.Windows.Forms.Panel(); this.pNUpdate = new System.Windows.Forms.Panel();
this.cBUpdateTime = new System.Windows.Forms.ComboBox(); this.cBUpdateTime = new System.Windows.Forms.ComboBox();
this.lbCheckEvery = new System.Windows.Forms.Label(); this.lbCheckEvery = new System.Windows.Forms.Label();
@ -133,7 +134,6 @@
this.linkUninstall = new System.Windows.Forms.LinkLabel(); this.linkUninstall = new System.Windows.Forms.LinkLabel();
this.linkSetup = new System.Windows.Forms.LinkLabel(); this.linkSetup = new System.Windows.Forms.LinkLabel();
this.lLBUpdate = new System.Windows.Forms.LinkLabel(); this.lLBUpdate = new System.Windows.Forms.LinkLabel();
this.cBDownloadLangauge = new System.Windows.Forms.CheckBox();
this.tabLog = new System.Windows.Forms.TabPage(); this.tabLog = new System.Windows.Forms.TabPage();
this.saveProfiles = new System.Windows.Forms.SaveFileDialog(); this.saveProfiles = new System.Windows.Forms.SaveFileDialog();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
@ -162,12 +162,13 @@
// //
// lvDebug // lvDebug
// //
resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.lvDebug.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chTime, this.chTime,
this.chData}); this.chData});
resources.ApplyResources(this.lvDebug, "lvDebug");
this.lvDebug.FullRowSelect = true; this.lvDebug.FullRowSelect = true;
this.lvDebug.Name = "lvDebug"; this.lvDebug.Name = "lvDebug";
this.toolTip1.SetToolTip(this.lvDebug, resources.GetString("lvDebug.ToolTip"));
this.lvDebug.UseCompatibleStateImageBehavior = false; this.lvDebug.UseCompatibleStateImageBehavior = false;
this.lvDebug.View = System.Windows.Forms.View.Details; this.lvDebug.View = System.Windows.Forms.View.Details;
this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate); this.lvDebug.ItemActivate += new System.EventHandler(this.lvDebug_ItemActivate);
@ -187,24 +188,27 @@
// //
// pnlButton // pnlButton
// //
resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.BackColor = System.Drawing.SystemColors.Control; this.pnlButton.BackColor = System.Drawing.SystemColors.Control;
this.pnlButton.Controls.Add(this.lbTest); this.pnlButton.Controls.Add(this.lbTest);
this.pnlButton.Controls.Add(this.btnStartStop); this.pnlButton.Controls.Add(this.btnStartStop);
this.pnlButton.Controls.Add(this.lbLastMessage); this.pnlButton.Controls.Add(this.lbLastMessage);
this.pnlButton.Controls.Add(this.llbHelp); this.pnlButton.Controls.Add(this.llbHelp);
resources.ApplyResources(this.pnlButton, "pnlButton");
this.pnlButton.Name = "pnlButton"; this.pnlButton.Name = "pnlButton";
this.toolTip1.SetToolTip(this.pnlButton, resources.GetString("pnlButton.ToolTip"));
this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave); this.pnlButton.MouseLeave += new System.EventHandler(this.pnlButton_MouseLeave);
// //
// lbTest // lbTest
// //
resources.ApplyResources(this.lbTest, "lbTest"); resources.ApplyResources(this.lbTest, "lbTest");
this.lbTest.Name = "lbTest"; this.lbTest.Name = "lbTest";
this.toolTip1.SetToolTip(this.lbTest, resources.GetString("lbTest.ToolTip"));
// //
// btnStartStop // btnStartStop
// //
resources.ApplyResources(this.btnStartStop, "btnStartStop"); resources.ApplyResources(this.btnStartStop, "btnStartStop");
this.btnStartStop.Name = "btnStartStop"; this.btnStartStop.Name = "btnStartStop";
this.toolTip1.SetToolTip(this.btnStartStop, resources.GetString("btnStartStop.ToolTip"));
this.btnStartStop.UseVisualStyleBackColor = true; this.btnStartStop.UseVisualStyleBackColor = true;
this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click); this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);
// //
@ -213,6 +217,7 @@
resources.ApplyResources(this.lbLastMessage, "lbLastMessage"); resources.ApplyResources(this.lbLastMessage, "lbLastMessage");
this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText; this.lbLastMessage.ForeColor = System.Drawing.SystemColors.GrayText;
this.lbLastMessage.Name = "lbLastMessage"; this.lbLastMessage.Name = "lbLastMessage";
this.toolTip1.SetToolTip(this.lbLastMessage, resources.GetString("lbLastMessage.ToolTip"));
this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover); this.lbLastMessage.MouseHover += new System.EventHandler(this.lbLastMessage_MouseHover);
// //
// llbHelp // llbHelp
@ -220,12 +225,14 @@
resources.ApplyResources(this.llbHelp, "llbHelp"); resources.ApplyResources(this.llbHelp, "llbHelp");
this.llbHelp.Name = "llbHelp"; this.llbHelp.Name = "llbHelp";
this.llbHelp.TabStop = true; this.llbHelp.TabStop = true;
this.toolTip1.SetToolTip(this.llbHelp, resources.GetString("llbHelp.ToolTip"));
this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked); this.llbHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbHelp_LinkClicked);
// //
// btnClear // btnClear
// //
resources.ApplyResources(this.btnClear, "btnClear"); resources.ApplyResources(this.btnClear, "btnClear");
this.btnClear.Name = "btnClear"; this.btnClear.Name = "btnClear";
this.toolTip1.SetToolTip(this.btnClear, resources.GetString("btnClear.ToolTip"));
this.btnClear.UseVisualStyleBackColor = true; this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click); this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
// //
@ -240,6 +247,7 @@
// //
// cMTaskbar // cMTaskbar
// //
resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMTaskbar.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMTaskbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editProfileForController1ToolStripMenuItem, this.editProfileForController1ToolStripMenuItem,
@ -251,46 +259,46 @@
this.openToolStripMenuItem, this.openToolStripMenuItem,
this.exitToolStripMenuItem}); this.exitToolStripMenuItem});
this.cMTaskbar.Name = "cMTaskbar"; this.cMTaskbar.Name = "cMTaskbar";
resources.ApplyResources(this.cMTaskbar, "cMTaskbar");
this.cMTaskbar.Tag = "25"; this.cMTaskbar.Tag = "25";
this.toolTip1.SetToolTip(this.cMTaskbar, resources.GetString("cMTaskbar.ToolTip"));
// //
// editProfileForController1ToolStripMenuItem // editProfileForController1ToolStripMenuItem
// //
this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem"); resources.ApplyResources(this.editProfileForController1ToolStripMenuItem, "editProfileForController1ToolStripMenuItem");
this.editProfileForController1ToolStripMenuItem.Name = "editProfileForController1ToolStripMenuItem";
this.editProfileForController1ToolStripMenuItem.Tag = "0"; this.editProfileForController1ToolStripMenuItem.Tag = "0";
this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController1ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController2ToolStripMenuItem // editProfileForController2ToolStripMenuItem
// //
this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem"); resources.ApplyResources(this.editProfileForController2ToolStripMenuItem, "editProfileForController2ToolStripMenuItem");
this.editProfileForController2ToolStripMenuItem.Name = "editProfileForController2ToolStripMenuItem";
this.editProfileForController2ToolStripMenuItem.Tag = "1"; this.editProfileForController2ToolStripMenuItem.Tag = "1";
this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController2ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController3ToolStripMenuItem // editProfileForController3ToolStripMenuItem
// //
this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem"); resources.ApplyResources(this.editProfileForController3ToolStripMenuItem, "editProfileForController3ToolStripMenuItem");
this.editProfileForController3ToolStripMenuItem.Name = "editProfileForController3ToolStripMenuItem";
this.editProfileForController3ToolStripMenuItem.Tag = "2"; this.editProfileForController3ToolStripMenuItem.Tag = "2";
this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController3ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// editProfileForController4ToolStripMenuItem // editProfileForController4ToolStripMenuItem
// //
this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem";
resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem"); resources.ApplyResources(this.editProfileForController4ToolStripMenuItem, "editProfileForController4ToolStripMenuItem");
this.editProfileForController4ToolStripMenuItem.Name = "editProfileForController4ToolStripMenuItem";
this.editProfileForController4ToolStripMenuItem.Tag = "4"; this.editProfileForController4ToolStripMenuItem.Tag = "4";
this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click); this.editProfileForController4ToolStripMenuItem.Click += new System.EventHandler(this.editMenu_Click);
// //
// toolStripSeparator1 // toolStripSeparator1
// //
this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
this.toolStripSeparator1.Name = "toolStripSeparator1";
// //
// startToolStripMenuItem // startToolStripMenuItem
// //
this.startToolStripMenuItem.Name = "startToolStripMenuItem";
resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem"); resources.ApplyResources(this.startToolStripMenuItem, "startToolStripMenuItem");
this.startToolStripMenuItem.Name = "startToolStripMenuItem";
this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
// //
// openToolStripMenuItem // openToolStripMenuItem
@ -301,14 +309,14 @@
// //
// exitToolStripMenuItem // exitToolStripMenuItem
// //
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
// //
// toolStripSeparator2 // toolStripSeparator2
// //
this.toolStripSeparator2.Name = "toolStripSeparator2";
resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
this.toolStripSeparator2.Name = "toolStripSeparator2";
// //
// openProfiles // openProfiles
// //
@ -317,22 +325,24 @@
// //
// tabMain // tabMain
// //
resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Controls.Add(this.tabControllers); this.tabMain.Controls.Add(this.tabControllers);
this.tabMain.Controls.Add(this.tabProfiles); this.tabMain.Controls.Add(this.tabProfiles);
this.tabMain.Controls.Add(this.tabAutoProfiles); this.tabMain.Controls.Add(this.tabAutoProfiles);
this.tabMain.Controls.Add(this.tabSettings); this.tabMain.Controls.Add(this.tabSettings);
this.tabMain.Controls.Add(this.tabLog); this.tabMain.Controls.Add(this.tabLog);
resources.ApplyResources(this.tabMain, "tabMain");
this.tabMain.Name = "tabMain"; this.tabMain.Name = "tabMain";
this.tabMain.SelectedIndex = 0; this.tabMain.SelectedIndex = 0;
this.toolTip1.SetToolTip(this.tabMain, resources.GetString("tabMain.ToolTip"));
this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged); this.tabMain.SelectedIndexChanged += new System.EventHandler(this.tabMain_SelectedIndexChanged);
// //
// tabControllers // tabControllers
// //
resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Controls.Add(this.tLPControllers); this.tabControllers.Controls.Add(this.tLPControllers);
this.tabControllers.Controls.Add(this.lbNoControllers); this.tabControllers.Controls.Add(this.lbNoControllers);
resources.ApplyResources(this.tabControllers, "tabControllers");
this.tabControllers.Name = "tabControllers"; this.tabControllers.Name = "tabControllers";
this.toolTip1.SetToolTip(this.tabControllers, resources.GetString("tabControllers.ToolTip"));
this.tabControllers.UseVisualStyleBackColor = true; this.tabControllers.UseVisualStyleBackColor = true;
// //
// tLPControllers // tLPControllers
@ -363,6 +373,7 @@
this.tLPControllers.Controls.Add(this.pBStatus3, 1, 3); this.tLPControllers.Controls.Add(this.pBStatus3, 1, 3);
this.tLPControllers.Controls.Add(this.pBStatus4, 1, 4); this.tLPControllers.Controls.Add(this.pBStatus4, 1, 4);
this.tLPControllers.Name = "tLPControllers"; this.tLPControllers.Name = "tLPControllers";
this.toolTip1.SetToolTip(this.tLPControllers, resources.GetString("tLPControllers.ToolTip"));
// //
// pBStatus1 // pBStatus1
// //
@ -371,6 +382,7 @@
this.pBStatus1.Name = "pBStatus1"; this.pBStatus1.Name = "pBStatus1";
this.pBStatus1.TabStop = false; this.pBStatus1.TabStop = false;
this.pBStatus1.Tag = "0"; this.pBStatus1.Tag = "0";
this.toolTip1.SetToolTip(this.pBStatus1, resources.GetString("pBStatus1.ToolTip"));
this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// lbPad1 // lbPad1
@ -378,6 +390,7 @@
resources.ApplyResources(this.lbPad1, "lbPad1"); resources.ApplyResources(this.lbPad1, "lbPad1");
this.lbPad1.Name = "lbPad1"; this.lbPad1.Name = "lbPad1";
this.lbPad1.Tag = "0"; this.lbPad1.Tag = "0";
this.toolTip1.SetToolTip(this.lbPad1, resources.GetString("lbPad1.ToolTip"));
this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad1.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad1.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -386,6 +399,7 @@
resources.ApplyResources(this.lbPad2, "lbPad2"); resources.ApplyResources(this.lbPad2, "lbPad2");
this.lbPad2.Name = "lbPad2"; this.lbPad2.Name = "lbPad2";
this.lbPad2.Tag = "1"; this.lbPad2.Tag = "1";
this.toolTip1.SetToolTip(this.lbPad2, resources.GetString("lbPad2.ToolTip"));
this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad2.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad2.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -394,6 +408,7 @@
resources.ApplyResources(this.bnEditC3, "bnEditC3"); resources.ApplyResources(this.bnEditC3, "bnEditC3");
this.bnEditC3.Name = "bnEditC3"; this.bnEditC3.Name = "bnEditC3";
this.bnEditC3.Tag = "2"; this.bnEditC3.Tag = "2";
this.toolTip1.SetToolTip(this.bnEditC3, resources.GetString("bnEditC3.ToolTip"));
this.bnEditC3.UseVisualStyleBackColor = true; this.bnEditC3.UseVisualStyleBackColor = true;
this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC3.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -402,6 +417,7 @@
resources.ApplyResources(this.bnEditC4, "bnEditC4"); resources.ApplyResources(this.bnEditC4, "bnEditC4");
this.bnEditC4.Name = "bnEditC4"; this.bnEditC4.Name = "bnEditC4";
this.bnEditC4.Tag = "3"; this.bnEditC4.Tag = "3";
this.toolTip1.SetToolTip(this.bnEditC4, resources.GetString("bnEditC4.ToolTip"));
this.bnEditC4.UseVisualStyleBackColor = true; this.bnEditC4.UseVisualStyleBackColor = true;
this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC4.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -410,6 +426,7 @@
resources.ApplyResources(this.lbPad3, "lbPad3"); resources.ApplyResources(this.lbPad3, "lbPad3");
this.lbPad3.Name = "lbPad3"; this.lbPad3.Name = "lbPad3";
this.lbPad3.Tag = "2"; this.lbPad3.Tag = "2";
this.toolTip1.SetToolTip(this.lbPad3, resources.GetString("lbPad3.ToolTip"));
this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad3.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad3.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -418,6 +435,7 @@
resources.ApplyResources(this.lbPad4, "lbPad4"); resources.ApplyResources(this.lbPad4, "lbPad4");
this.lbPad4.Name = "lbPad4"; this.lbPad4.Name = "lbPad4";
this.lbPad4.Tag = "3"; this.lbPad4.Tag = "3";
this.toolTip1.SetToolTip(this.lbPad4, resources.GetString("lbPad4.ToolTip"));
this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave); this.lbPad4.MouseLeave += new System.EventHandler(this.Pads_MouseLeave);
this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover); this.lbPad4.MouseHover += new System.EventHandler(this.Pads_MouseHover);
// //
@ -428,6 +446,7 @@
this.cBController1.FormattingEnabled = true; this.cBController1.FormattingEnabled = true;
this.cBController1.Name = "cBController1"; this.cBController1.Name = "cBController1";
this.cBController1.Tag = "0"; this.cBController1.Tag = "0";
this.toolTip1.SetToolTip(this.cBController1, resources.GetString("cBController1.ToolTip"));
this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController1.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// bnEditC2 // bnEditC2
@ -435,6 +454,7 @@
resources.ApplyResources(this.bnEditC2, "bnEditC2"); resources.ApplyResources(this.bnEditC2, "bnEditC2");
this.bnEditC2.Name = "bnEditC2"; this.bnEditC2.Name = "bnEditC2";
this.bnEditC2.Tag = "1"; this.bnEditC2.Tag = "1";
this.toolTip1.SetToolTip(this.bnEditC2, resources.GetString("bnEditC2.ToolTip"));
this.bnEditC2.UseVisualStyleBackColor = true; this.bnEditC2.UseVisualStyleBackColor = true;
this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC2.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -445,6 +465,7 @@
this.cBController2.FormattingEnabled = true; this.cBController2.FormattingEnabled = true;
this.cBController2.Name = "cBController2"; this.cBController2.Name = "cBController2";
this.cBController2.Tag = "1"; this.cBController2.Tag = "1";
this.toolTip1.SetToolTip(this.cBController2, resources.GetString("cBController2.ToolTip"));
this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController2.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// cBController3 // cBController3
@ -454,6 +475,7 @@
this.cBController3.FormattingEnabled = true; this.cBController3.FormattingEnabled = true;
this.cBController3.Name = "cBController3"; this.cBController3.Name = "cBController3";
this.cBController3.Tag = "2"; this.cBController3.Tag = "2";
this.toolTip1.SetToolTip(this.cBController3, resources.GetString("cBController3.ToolTip"));
this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController3.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// bnEditC1 // bnEditC1
@ -461,6 +483,7 @@
resources.ApplyResources(this.bnEditC1, "bnEditC1"); resources.ApplyResources(this.bnEditC1, "bnEditC1");
this.bnEditC1.Name = "bnEditC1"; this.bnEditC1.Name = "bnEditC1";
this.bnEditC1.Tag = "0"; this.bnEditC1.Tag = "0";
this.toolTip1.SetToolTip(this.bnEditC1, resources.GetString("bnEditC1.ToolTip"));
this.bnEditC1.UseVisualStyleBackColor = true; this.bnEditC1.UseVisualStyleBackColor = true;
this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click); this.bnEditC1.Click += new System.EventHandler(this.editButtons_Click);
// //
@ -471,47 +494,56 @@
this.cBController4.FormattingEnabled = true; this.cBController4.FormattingEnabled = true;
this.cBController4.Name = "cBController4"; this.cBController4.Name = "cBController4";
this.cBController4.Tag = "3"; this.cBController4.Tag = "3";
this.toolTip1.SetToolTip(this.cBController4, resources.GetString("cBController4.ToolTip"));
this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed); this.cBController4.SelectedValueChanged += new System.EventHandler(this.Profile_Changed);
// //
// lbSelectedProfile // lbSelectedProfile
// //
resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile"); resources.ApplyResources(this.lbSelectedProfile, "lbSelectedProfile");
this.lbSelectedProfile.Name = "lbSelectedProfile"; this.lbSelectedProfile.Name = "lbSelectedProfile";
this.toolTip1.SetToolTip(this.lbSelectedProfile, resources.GetString("lbSelectedProfile.ToolTip"));
// //
// lbID // lbID
// //
resources.ApplyResources(this.lbID, "lbID"); resources.ApplyResources(this.lbID, "lbID");
this.lbID.Name = "lbID"; this.lbID.Name = "lbID";
this.toolTip1.SetToolTip(this.lbID, resources.GetString("lbID.ToolTip"));
// //
// lbStatus // lbStatus
// //
resources.ApplyResources(this.lbStatus, "lbStatus"); resources.ApplyResources(this.lbStatus, "lbStatus");
this.lbStatus.Name = "lbStatus"; this.lbStatus.Name = "lbStatus";
this.toolTip1.SetToolTip(this.lbStatus, resources.GetString("lbStatus.ToolTip"));
// //
// lbBattery // lbBattery
// //
resources.ApplyResources(this.lbBattery, "lbBattery"); resources.ApplyResources(this.lbBattery, "lbBattery");
this.lbBattery.Name = "lbBattery"; this.lbBattery.Name = "lbBattery";
this.toolTip1.SetToolTip(this.lbBattery, resources.GetString("lbBattery.ToolTip"));
// //
// lbBatt1 // lbBatt1
// //
resources.ApplyResources(this.lbBatt1, "lbBatt1"); resources.ApplyResources(this.lbBatt1, "lbBatt1");
this.lbBatt1.Name = "lbBatt1"; this.lbBatt1.Name = "lbBatt1";
this.toolTip1.SetToolTip(this.lbBatt1, resources.GetString("lbBatt1.ToolTip"));
// //
// lbBatt2 // lbBatt2
// //
resources.ApplyResources(this.lbBatt2, "lbBatt2"); resources.ApplyResources(this.lbBatt2, "lbBatt2");
this.lbBatt2.Name = "lbBatt2"; this.lbBatt2.Name = "lbBatt2";
this.toolTip1.SetToolTip(this.lbBatt2, resources.GetString("lbBatt2.ToolTip"));
// //
// lbBatt3 // lbBatt3
// //
resources.ApplyResources(this.lbBatt3, "lbBatt3"); resources.ApplyResources(this.lbBatt3, "lbBatt3");
this.lbBatt3.Name = "lbBatt3"; this.lbBatt3.Name = "lbBatt3";
this.toolTip1.SetToolTip(this.lbBatt3, resources.GetString("lbBatt3.ToolTip"));
// //
// lbBatt4 // lbBatt4
// //
resources.ApplyResources(this.lbBatt4, "lbBatt4"); resources.ApplyResources(this.lbBatt4, "lbBatt4");
this.lbBatt4.Name = "lbBatt4"; this.lbBatt4.Name = "lbBatt4";
this.toolTip1.SetToolTip(this.lbBatt4, resources.GetString("lbBatt4.ToolTip"));
// //
// pBStatus2 // pBStatus2
// //
@ -520,6 +552,7 @@
this.pBStatus2.Name = "pBStatus2"; this.pBStatus2.Name = "pBStatus2";
this.pBStatus2.TabStop = false; this.pBStatus2.TabStop = false;
this.pBStatus2.Tag = "1"; this.pBStatus2.Tag = "1";
this.toolTip1.SetToolTip(this.pBStatus2, resources.GetString("pBStatus2.ToolTip"));
this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// pBStatus3 // pBStatus3
@ -529,6 +562,7 @@
this.pBStatus3.Name = "pBStatus3"; this.pBStatus3.Name = "pBStatus3";
this.pBStatus3.TabStop = false; this.pBStatus3.TabStop = false;
this.pBStatus3.Tag = "2"; this.pBStatus3.Tag = "2";
this.toolTip1.SetToolTip(this.pBStatus3, resources.GetString("pBStatus3.ToolTip"));
this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// pBStatus4 // pBStatus4
@ -538,36 +572,41 @@
this.pBStatus4.Name = "pBStatus4"; this.pBStatus4.Name = "pBStatus4";
this.pBStatus4.TabStop = false; this.pBStatus4.TabStop = false;
this.pBStatus4.Tag = "3"; this.pBStatus4.Tag = "3";
this.toolTip1.SetToolTip(this.pBStatus4, resources.GetString("pBStatus4.ToolTip"));
this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick); this.pBStatus4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pBStatus_MouseClick);
// //
// lbNoControllers // lbNoControllers
// //
resources.ApplyResources(this.lbNoControllers, "lbNoControllers"); resources.ApplyResources(this.lbNoControllers, "lbNoControllers");
this.lbNoControllers.Name = "lbNoControllers"; this.lbNoControllers.Name = "lbNoControllers";
this.toolTip1.SetToolTip(this.lbNoControllers, resources.GetString("lbNoControllers.ToolTip"));
// //
// tabProfiles // tabProfiles
// //
resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Controls.Add(this.lBProfiles); this.tabProfiles.Controls.Add(this.lBProfiles);
this.tabProfiles.Controls.Add(this.tSOptions); this.tabProfiles.Controls.Add(this.tSOptions);
this.tabProfiles.Controls.Add(this.toolStrip1); this.tabProfiles.Controls.Add(this.toolStrip1);
resources.ApplyResources(this.tabProfiles, "tabProfiles");
this.tabProfiles.Name = "tabProfiles"; this.tabProfiles.Name = "tabProfiles";
this.toolTip1.SetToolTip(this.tabProfiles, resources.GetString("tabProfiles.ToolTip"));
this.tabProfiles.UseVisualStyleBackColor = true; this.tabProfiles.UseVisualStyleBackColor = true;
// //
// lBProfiles // lBProfiles
// //
resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lBProfiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lBProfiles.ContextMenuStrip = this.cMProfile; this.lBProfiles.ContextMenuStrip = this.cMProfile;
resources.ApplyResources(this.lBProfiles, "lBProfiles");
this.lBProfiles.FormattingEnabled = true; this.lBProfiles.FormattingEnabled = true;
this.lBProfiles.MultiColumn = true; this.lBProfiles.MultiColumn = true;
this.lBProfiles.Name = "lBProfiles"; this.lBProfiles.Name = "lBProfiles";
this.toolTip1.SetToolTip(this.lBProfiles, resources.GetString("lBProfiles.ToolTip"));
this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown); this.lBProfiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lBProfiles_KeyDown);
this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick); this.lBProfiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDoubleClick);
this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown); this.lBProfiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lBProfiles_MouseDown);
// //
// cMProfile // cMProfile
// //
resources.ApplyResources(this.cMProfile, "cMProfile");
this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24); this.cMProfile.ImageScalingSize = new System.Drawing.Size(24, 24);
this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cMProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.editToolStripMenuItem, this.editToolStripMenuItem,
@ -581,7 +620,7 @@
this.importToolStripMenuItem, this.importToolStripMenuItem,
this.exportToolStripMenuItem}); this.exportToolStripMenuItem});
this.cMProfile.Name = "cMProfile"; this.cMProfile.Name = "cMProfile";
resources.ApplyResources(this.cMProfile, "cMProfile"); this.toolTip1.SetToolTip(this.cMProfile, resources.GetString("cMProfile.ToolTip"));
// //
// editToolStripMenuItem // editToolStripMenuItem
// //
@ -591,60 +630,61 @@
// //
// assignToController1ToolStripMenuItem // assignToController1ToolStripMenuItem
// //
this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem";
resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem"); resources.ApplyResources(this.assignToController1ToolStripMenuItem, "assignToController1ToolStripMenuItem");
this.assignToController1ToolStripMenuItem.Name = "assignToController1ToolStripMenuItem";
this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click); this.assignToController1ToolStripMenuItem.Click += new System.EventHandler(this.assignToController1ToolStripMenuItem_Click);
// //
// assignToController2ToolStripMenuItem // assignToController2ToolStripMenuItem
// //
this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem";
resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem"); resources.ApplyResources(this.assignToController2ToolStripMenuItem, "assignToController2ToolStripMenuItem");
this.assignToController2ToolStripMenuItem.Name = "assignToController2ToolStripMenuItem";
this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click); this.assignToController2ToolStripMenuItem.Click += new System.EventHandler(this.assignToController2ToolStripMenuItem_Click);
// //
// assignToController3ToolStripMenuItem // assignToController3ToolStripMenuItem
// //
this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem";
resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem"); resources.ApplyResources(this.assignToController3ToolStripMenuItem, "assignToController3ToolStripMenuItem");
this.assignToController3ToolStripMenuItem.Name = "assignToController3ToolStripMenuItem";
this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click); this.assignToController3ToolStripMenuItem.Click += new System.EventHandler(this.assignToController3ToolStripMenuItem_Click);
// //
// assignToController4ToolStripMenuItem // assignToController4ToolStripMenuItem
// //
this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem";
resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem"); resources.ApplyResources(this.assignToController4ToolStripMenuItem, "assignToController4ToolStripMenuItem");
this.assignToController4ToolStripMenuItem.Name = "assignToController4ToolStripMenuItem";
this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click); this.assignToController4ToolStripMenuItem.Click += new System.EventHandler(this.assignToController4ToolStripMenuItem_Click);
// //
// deleteToolStripMenuItem // deleteToolStripMenuItem
// //
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem"); resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click); this.deleteToolStripMenuItem.Click += new System.EventHandler(this.tsBDeleteProfle_Click);
// //
// duplicateToolStripMenuItem // duplicateToolStripMenuItem
// //
this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem"); resources.ApplyResources(this.duplicateToolStripMenuItem, "duplicateToolStripMenuItem");
this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click); this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.tSBDupProfile_Click);
// //
// newProfileToolStripMenuItem // newProfileToolStripMenuItem
// //
this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem";
resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem"); resources.ApplyResources(this.newProfileToolStripMenuItem, "newProfileToolStripMenuItem");
this.newProfileToolStripMenuItem.Name = "newProfileToolStripMenuItem";
this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click); this.newProfileToolStripMenuItem.Click += new System.EventHandler(this.tsBNewProfile_Click);
// //
// importToolStripMenuItem // importToolStripMenuItem
// //
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem"); resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click); this.importToolStripMenuItem.Click += new System.EventHandler(this.tSBImportProfile_Click);
// //
// exportToolStripMenuItem // exportToolStripMenuItem
// //
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem"); resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click); this.exportToolStripMenuItem.Click += new System.EventHandler(this.tSBExportProfile_Click);
// //
// tSOptions // tSOptions
// //
resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.tSOptions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tSOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1, this.toolStripLabel1,
@ -653,54 +693,55 @@
this.tSBCancel, this.tSBCancel,
this.toolStripSeparator3, this.toolStripSeparator3,
this.tSBKeepSize}); this.tSBKeepSize});
resources.ApplyResources(this.tSOptions, "tSOptions");
this.tSOptions.Name = "tSOptions"; this.tSOptions.Name = "tSOptions";
this.tSOptions.ShowItemToolTips = false; this.tSOptions.ShowItemToolTips = false;
this.toolTip1.SetToolTip(this.tSOptions, resources.GetString("tSOptions.ToolTip"));
// //
// toolStripLabel1 // toolStripLabel1
// //
this.toolStripLabel1.Name = "toolStripLabel1";
resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1"); resources.ApplyResources(this.toolStripLabel1, "toolStripLabel1");
this.toolStripLabel1.Name = "toolStripLabel1";
// //
// tSTBProfile // tSTBProfile
// //
resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText; this.tSTBProfile.ForeColor = System.Drawing.SystemColors.GrayText;
this.tSTBProfile.Name = "tSTBProfile"; this.tSTBProfile.Name = "tSTBProfile";
resources.ApplyResources(this.tSTBProfile, "tSTBProfile");
this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter); this.tSTBProfile.Enter += new System.EventHandler(this.tBProfile_Enter);
this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave); this.tSTBProfile.Leave += new System.EventHandler(this.tBProfile_Leave);
this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged); this.tSTBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged);
// //
// tSBSaveProfile // tSBSaveProfile
// //
resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.AutoToolTip = false; this.tSBSaveProfile.AutoToolTip = false;
this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile; this.tSBSaveProfile.Image = global::DS4Windows.Properties.Resources.saveprofile;
resources.ApplyResources(this.tSBSaveProfile, "tSBSaveProfile");
this.tSBSaveProfile.Name = "tSBSaveProfile"; this.tSBSaveProfile.Name = "tSBSaveProfile";
this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click); this.tSBSaveProfile.Click += new System.EventHandler(this.tSBSaveProfile_Click);
// //
// tSBCancel // tSBCancel
// //
resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.AutoToolTip = false; this.tSBCancel.AutoToolTip = false;
this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete; this.tSBCancel.Image = global::DS4Windows.Properties.Resources.delete;
resources.ApplyResources(this.tSBCancel, "tSBCancel");
this.tSBCancel.Name = "tSBCancel"; this.tSBCancel.Name = "tSBCancel";
this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click); this.tSBCancel.Click += new System.EventHandler(this.tSBCancel_Click);
// //
// toolStripSeparator3 // toolStripSeparator3
// //
this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3"); resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
this.toolStripSeparator3.Name = "toolStripSeparator3";
// //
// tSBKeepSize // tSBKeepSize
// //
this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size;
resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize"); resources.ApplyResources(this.tSBKeepSize, "tSBKeepSize");
this.tSBKeepSize.Image = global::DS4Windows.Properties.Resources.size;
this.tSBKeepSize.Name = "tSBKeepSize"; this.tSBKeepSize.Name = "tSBKeepSize";
this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click); this.tSBKeepSize.Click += new System.EventHandler(this.tSBKeepSize_Click);
// //
// toolStrip1 // toolStrip1
// //
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsBNewProfle, this.tsBNewProfle,
@ -709,20 +750,20 @@
this.tSBDupProfile, this.tSBDupProfile,
this.tSBImportProfile, this.tSBImportProfile,
this.tSBExportProfile}); this.tSBExportProfile});
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Name = "toolStrip1";
this.toolTip1.SetToolTip(this.toolStrip1, resources.GetString("toolStrip1.ToolTip"));
// //
// tsBNewProfle // tsBNewProfle
// //
this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile;
resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle"); resources.ApplyResources(this.tsBNewProfle, "tsBNewProfle");
this.tsBNewProfle.Image = global::DS4Windows.Properties.Resources.newprofile;
this.tsBNewProfle.Name = "tsBNewProfle"; this.tsBNewProfle.Name = "tsBNewProfle";
this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click); this.tsBNewProfle.Click += new System.EventHandler(this.tsBNewProfile_Click);
// //
// tsBEditProfile // tsBEditProfile
// //
this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit;
resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile"); resources.ApplyResources(this.tsBEditProfile, "tsBEditProfile");
this.tsBEditProfile.Image = global::DS4Windows.Properties.Resources.edit;
this.tsBEditProfile.Name = "tsBEditProfile"; this.tsBEditProfile.Name = "tsBEditProfile";
this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click); this.tsBEditProfile.Click += new System.EventHandler(this.tsBNEditProfile_Click);
// //
@ -740,8 +781,8 @@
// //
// tSBImportProfile // tSBImportProfile
// //
this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import;
resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile"); resources.ApplyResources(this.tSBImportProfile, "tSBImportProfile");
this.tSBImportProfile.Image = global::DS4Windows.Properties.Resources.import;
this.tSBImportProfile.Name = "tSBImportProfile"; this.tSBImportProfile.Name = "tSBImportProfile";
this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click); this.tSBImportProfile.Click += new System.EventHandler(this.tSBImportProfile_Click);
// //
@ -755,13 +796,15 @@
// //
resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles"); resources.ApplyResources(this.tabAutoProfiles, "tabAutoProfiles");
this.tabAutoProfiles.Name = "tabAutoProfiles"; this.tabAutoProfiles.Name = "tabAutoProfiles";
this.toolTip1.SetToolTip(this.tabAutoProfiles, resources.GetString("tabAutoProfiles.ToolTip"));
this.tabAutoProfiles.UseVisualStyleBackColor = true; this.tabAutoProfiles.UseVisualStyleBackColor = true;
// //
// tabSettings // tabSettings
// //
this.tabSettings.Controls.Add(this.fLPSettings);
resources.ApplyResources(this.tabSettings, "tabSettings"); resources.ApplyResources(this.tabSettings, "tabSettings");
this.tabSettings.Controls.Add(this.fLPSettings);
this.tabSettings.Name = "tabSettings"; this.tabSettings.Name = "tabSettings";
this.toolTip1.SetToolTip(this.tabSettings, resources.GetString("tabSettings.ToolTip"));
this.tabSettings.UseVisualStyleBackColor = true; this.tabSettings.UseVisualStyleBackColor = true;
// //
// fLPSettings // fLPSettings
@ -781,11 +824,13 @@
this.fLPSettings.Controls.Add(this.pnlXIPorts); this.fLPSettings.Controls.Add(this.pnlXIPorts);
this.fLPSettings.Controls.Add(this.flowLayoutPanel1); this.fLPSettings.Controls.Add(this.flowLayoutPanel1);
this.fLPSettings.Name = "fLPSettings"; this.fLPSettings.Name = "fLPSettings";
this.toolTip1.SetToolTip(this.fLPSettings, resources.GetString("fLPSettings.ToolTip"));
// //
// hideDS4CheckBox // hideDS4CheckBox
// //
resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox"); resources.ApplyResources(this.hideDS4CheckBox, "hideDS4CheckBox");
this.hideDS4CheckBox.Name = "hideDS4CheckBox"; this.hideDS4CheckBox.Name = "hideDS4CheckBox";
this.toolTip1.SetToolTip(this.hideDS4CheckBox, resources.GetString("hideDS4CheckBox.ToolTip"));
this.hideDS4CheckBox.UseVisualStyleBackColor = true; this.hideDS4CheckBox.UseVisualStyleBackColor = true;
this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged); this.hideDS4CheckBox.CheckedChanged += new System.EventHandler(this.hideDS4CheckBox_CheckedChanged);
// //
@ -795,6 +840,7 @@
this.cBSwipeProfiles.Checked = true; this.cBSwipeProfiles.Checked = true;
this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked; this.cBSwipeProfiles.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBSwipeProfiles.Name = "cBSwipeProfiles"; this.cBSwipeProfiles.Name = "cBSwipeProfiles";
this.toolTip1.SetToolTip(this.cBSwipeProfiles, resources.GetString("cBSwipeProfiles.ToolTip"));
this.cBSwipeProfiles.UseVisualStyleBackColor = true; this.cBSwipeProfiles.UseVisualStyleBackColor = true;
this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged); this.cBSwipeProfiles.CheckedChanged += new System.EventHandler(this.cBSwipeProfiles_CheckedChanged);
// //
@ -802,6 +848,7 @@
// //
resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox"); resources.ApplyResources(this.StartWindowsCheckBox, "StartWindowsCheckBox");
this.StartWindowsCheckBox.Name = "StartWindowsCheckBox"; this.StartWindowsCheckBox.Name = "StartWindowsCheckBox";
this.toolTip1.SetToolTip(this.StartWindowsCheckBox, resources.GetString("StartWindowsCheckBox.ToolTip"));
this.StartWindowsCheckBox.UseVisualStyleBackColor = true; this.StartWindowsCheckBox.UseVisualStyleBackColor = true;
this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged); this.StartWindowsCheckBox.CheckedChanged += new System.EventHandler(this.StartWindowsCheckBox_CheckedChanged);
// //
@ -809,6 +856,7 @@
// //
resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox"); resources.ApplyResources(this.startMinimizedCheckBox, "startMinimizedCheckBox");
this.startMinimizedCheckBox.Name = "startMinimizedCheckBox"; this.startMinimizedCheckBox.Name = "startMinimizedCheckBox";
this.toolTip1.SetToolTip(this.startMinimizedCheckBox, resources.GetString("startMinimizedCheckBox.ToolTip"));
this.startMinimizedCheckBox.UseVisualStyleBackColor = true; this.startMinimizedCheckBox.UseVisualStyleBackColor = true;
this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged); this.startMinimizedCheckBox.CheckedChanged += new System.EventHandler(this.startMinimizedCheckBox_CheckedChanged);
// //
@ -816,6 +864,7 @@
// //
resources.ApplyResources(this.cBNotifications, "cBNotifications"); resources.ApplyResources(this.cBNotifications, "cBNotifications");
this.cBNotifications.Name = "cBNotifications"; this.cBNotifications.Name = "cBNotifications";
this.toolTip1.SetToolTip(this.cBNotifications, resources.GetString("cBNotifications.ToolTip"));
this.cBNotifications.UseVisualStyleBackColor = true; this.cBNotifications.UseVisualStyleBackColor = true;
this.cBNotifications.CheckedChanged += new System.EventHandler(this.cBNotifications_CheckedChanged); this.cBNotifications.CheckedChanged += new System.EventHandler(this.cBNotifications_CheckedChanged);
// //
@ -823,6 +872,7 @@
// //
resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT"); resources.ApplyResources(this.cBDisconnectBT, "cBDisconnectBT");
this.cBDisconnectBT.Name = "cBDisconnectBT"; this.cBDisconnectBT.Name = "cBDisconnectBT";
this.toolTip1.SetToolTip(this.cBDisconnectBT, resources.GetString("cBDisconnectBT.ToolTip"));
this.cBDisconnectBT.UseVisualStyleBackColor = true; this.cBDisconnectBT.UseVisualStyleBackColor = true;
this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged); this.cBDisconnectBT.CheckedChanged += new System.EventHandler(this.cBDisconnectBT_CheckedChanged);
// //
@ -830,6 +880,7 @@
// //
resources.ApplyResources(this.cBCloseMini, "cBCloseMini"); resources.ApplyResources(this.cBCloseMini, "cBCloseMini");
this.cBCloseMini.Name = "cBCloseMini"; this.cBCloseMini.Name = "cBCloseMini";
this.toolTip1.SetToolTip(this.cBCloseMini, resources.GetString("cBCloseMini.ToolTip"));
this.cBCloseMini.UseVisualStyleBackColor = true; this.cBCloseMini.UseVisualStyleBackColor = true;
this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged); this.cBCloseMini.CheckedChanged += new System.EventHandler(this.cBCloseMini_CheckedChanged);
// //
@ -837,6 +888,7 @@
// //
resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge"); resources.ApplyResources(this.cBQuickCharge, "cBQuickCharge");
this.cBQuickCharge.Name = "cBQuickCharge"; this.cBQuickCharge.Name = "cBQuickCharge";
this.toolTip1.SetToolTip(this.cBQuickCharge, resources.GetString("cBQuickCharge.ToolTip"));
this.cBQuickCharge.UseVisualStyleBackColor = true; this.cBQuickCharge.UseVisualStyleBackColor = true;
this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged); this.cBQuickCharge.CheckedChanged += new System.EventHandler(this.cBQuickCharge_CheckedChanged);
// //
@ -844,32 +896,46 @@
// //
resources.ApplyResources(this.cBUpdate, "cBUpdate"); resources.ApplyResources(this.cBUpdate, "cBUpdate");
this.cBUpdate.Name = "cBUpdate"; this.cBUpdate.Name = "cBUpdate";
this.toolTip1.SetToolTip(this.cBUpdate, resources.GetString("cBUpdate.ToolTip"));
this.cBUpdate.UseVisualStyleBackColor = true; this.cBUpdate.UseVisualStyleBackColor = true;
this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged); this.cBUpdate.CheckedChanged += new System.EventHandler(this.cBUpdate_CheckedChanged);
// //
// cBDownloadLangauge
//
resources.ApplyResources(this.cBDownloadLangauge, "cBDownloadLangauge");
this.cBDownloadLangauge.Checked = true;
this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBDownloadLangauge.Name = "cBDownloadLangauge";
this.toolTip1.SetToolTip(this.cBDownloadLangauge, resources.GetString("cBDownloadLangauge.ToolTip"));
this.cBDownloadLangauge.UseVisualStyleBackColor = true;
this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged);
//
// pNUpdate // pNUpdate
// //
resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Controls.Add(this.cBUpdateTime); this.pNUpdate.Controls.Add(this.cBUpdateTime);
this.pNUpdate.Controls.Add(this.lbCheckEvery); this.pNUpdate.Controls.Add(this.lbCheckEvery);
this.pNUpdate.Controls.Add(this.nUDUpdateTime); this.pNUpdate.Controls.Add(this.nUDUpdateTime);
resources.ApplyResources(this.pNUpdate, "pNUpdate");
this.pNUpdate.Name = "pNUpdate"; this.pNUpdate.Name = "pNUpdate";
this.toolTip1.SetToolTip(this.pNUpdate, resources.GetString("pNUpdate.ToolTip"));
// //
// cBUpdateTime // cBUpdateTime
// //
resources.ApplyResources(this.cBUpdateTime, "cBUpdateTime");
this.cBUpdateTime.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBUpdateTime.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cBUpdateTime.FormattingEnabled = true; this.cBUpdateTime.FormattingEnabled = true;
this.cBUpdateTime.Items.AddRange(new object[] { this.cBUpdateTime.Items.AddRange(new object[] {
resources.GetString("cBUpdateTime.Items"), resources.GetString("cBUpdateTime.Items"),
resources.GetString("cBUpdateTime.Items1")}); resources.GetString("cBUpdateTime.Items1")});
resources.ApplyResources(this.cBUpdateTime, "cBUpdateTime");
this.cBUpdateTime.Name = "cBUpdateTime"; this.cBUpdateTime.Name = "cBUpdateTime";
this.toolTip1.SetToolTip(this.cBUpdateTime, resources.GetString("cBUpdateTime.ToolTip"));
this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged); this.cBUpdateTime.SelectedIndexChanged += new System.EventHandler(this.cBUpdateTime_SelectedIndexChanged);
// //
// lbCheckEvery // lbCheckEvery
// //
resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery"); resources.ApplyResources(this.lbCheckEvery, "lbCheckEvery");
this.lbCheckEvery.Name = "lbCheckEvery"; this.lbCheckEvery.Name = "lbCheckEvery";
this.toolTip1.SetToolTip(this.lbCheckEvery, resources.GetString("lbCheckEvery.ToolTip"));
// //
// nUDUpdateTime // nUDUpdateTime
// //
@ -880,15 +946,17 @@
0, 0,
0}); 0});
this.nUDUpdateTime.Name = "nUDUpdateTime"; this.nUDUpdateTime.Name = "nUDUpdateTime";
this.toolTip1.SetToolTip(this.nUDUpdateTime, resources.GetString("nUDUpdateTime.ToolTip"));
this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged); this.nUDUpdateTime.ValueChanged += new System.EventHandler(this.nUDUpdateTime_ValueChanged);
// //
// pnlXIPorts // pnlXIPorts
// //
resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Controls.Add(this.lbUseXIPorts); this.pnlXIPorts.Controls.Add(this.lbUseXIPorts);
this.pnlXIPorts.Controls.Add(this.nUDXIPorts); this.pnlXIPorts.Controls.Add(this.nUDXIPorts);
this.pnlXIPorts.Controls.Add(this.lbLastXIPort); this.pnlXIPorts.Controls.Add(this.lbLastXIPort);
resources.ApplyResources(this.pnlXIPorts, "pnlXIPorts");
this.pnlXIPorts.Name = "pnlXIPorts"; this.pnlXIPorts.Name = "pnlXIPorts";
this.toolTip1.SetToolTip(this.pnlXIPorts, resources.GetString("pnlXIPorts.ToolTip"));
this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter); this.pnlXIPorts.MouseEnter += new System.EventHandler(this.pnlXIPorts_MouseEnter);
this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave); this.pnlXIPorts.MouseLeave += new System.EventHandler(this.pnlXIPorts_MouseLeave);
// //
@ -896,6 +964,7 @@
// //
resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts"); resources.ApplyResources(this.lbUseXIPorts, "lbUseXIPorts");
this.lbUseXIPorts.Name = "lbUseXIPorts"; this.lbUseXIPorts.Name = "lbUseXIPorts";
this.toolTip1.SetToolTip(this.lbUseXIPorts, resources.GetString("lbUseXIPorts.ToolTip"));
// //
// nUDXIPorts // nUDXIPorts
// //
@ -911,6 +980,7 @@
0, 0,
0}); 0});
this.nUDXIPorts.Name = "nUDXIPorts"; this.nUDXIPorts.Name = "nUDXIPorts";
this.toolTip1.SetToolTip(this.nUDXIPorts, resources.GetString("nUDXIPorts.ToolTip"));
this.nUDXIPorts.Value = new decimal(new int[] { this.nUDXIPorts.Value = new decimal(new int[] {
1, 1,
0, 0,
@ -924,6 +994,7 @@
// //
resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort"); resources.ApplyResources(this.lbLastXIPort, "lbLastXIPort");
this.lbLastXIPort.Name = "lbLastXIPort"; this.lbLastXIPort.Name = "lbLastXIPort";
this.toolTip1.SetToolTip(this.lbLastXIPort, resources.GetString("lbLastXIPort.ToolTip"));
// //
// flowLayoutPanel1 // flowLayoutPanel1
// //
@ -934,12 +1005,14 @@
this.flowLayoutPanel1.Controls.Add(this.linkSetup); this.flowLayoutPanel1.Controls.Add(this.linkSetup);
this.flowLayoutPanel1.Controls.Add(this.lLBUpdate); this.flowLayoutPanel1.Controls.Add(this.lLBUpdate);
this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.toolTip1.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip"));
// //
// linkProfiles // linkProfiles
// //
resources.ApplyResources(this.linkProfiles, "linkProfiles"); resources.ApplyResources(this.linkProfiles, "linkProfiles");
this.linkProfiles.Name = "linkProfiles"; this.linkProfiles.Name = "linkProfiles";
this.linkProfiles.TabStop = true; this.linkProfiles.TabStop = true;
this.toolTip1.SetToolTip(this.linkProfiles, resources.GetString("linkProfiles.ToolTip"));
this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked); this.linkProfiles.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProfiles_LinkClicked);
// //
// lnkControllers // lnkControllers
@ -947,6 +1020,7 @@
resources.ApplyResources(this.lnkControllers, "lnkControllers"); resources.ApplyResources(this.lnkControllers, "lnkControllers");
this.lnkControllers.Name = "lnkControllers"; this.lnkControllers.Name = "lnkControllers";
this.lnkControllers.TabStop = true; this.lnkControllers.TabStop = true;
this.toolTip1.SetToolTip(this.lnkControllers, resources.GetString("lnkControllers.ToolTip"));
this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked); this.lnkControllers.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkControllers_LinkClicked);
// //
// linkUninstall // linkUninstall
@ -954,6 +1028,7 @@
resources.ApplyResources(this.linkUninstall, "linkUninstall"); resources.ApplyResources(this.linkUninstall, "linkUninstall");
this.linkUninstall.Name = "linkUninstall"; this.linkUninstall.Name = "linkUninstall";
this.linkUninstall.TabStop = true; this.linkUninstall.TabStop = true;
this.toolTip1.SetToolTip(this.linkUninstall, resources.GetString("linkUninstall.ToolTip"));
this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked); this.linkUninstall.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkUninstall_LinkClicked);
// //
// linkSetup // linkSetup
@ -961,6 +1036,7 @@
resources.ApplyResources(this.linkSetup, "linkSetup"); resources.ApplyResources(this.linkSetup, "linkSetup");
this.linkSetup.Name = "linkSetup"; this.linkSetup.Name = "linkSetup";
this.linkSetup.TabStop = true; this.linkSetup.TabStop = true;
this.toolTip1.SetToolTip(this.linkSetup, resources.GetString("linkSetup.ToolTip"));
this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked); this.linkSetup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLSetup_LinkClicked);
// //
// lLBUpdate // lLBUpdate
@ -968,23 +1044,16 @@
resources.ApplyResources(this.lLBUpdate, "lLBUpdate"); resources.ApplyResources(this.lLBUpdate, "lLBUpdate");
this.lLBUpdate.Name = "lLBUpdate"; this.lLBUpdate.Name = "lLBUpdate";
this.lLBUpdate.TabStop = true; this.lLBUpdate.TabStop = true;
this.toolTip1.SetToolTip(this.lLBUpdate, resources.GetString("lLBUpdate.ToolTip"));
this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked); this.lLBUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lLBUpdate_LinkClicked);
// //
// cBDownloadLangauge
//
resources.ApplyResources(this.cBDownloadLangauge, "cBDownloadLangauge");
this.cBDownloadLangauge.Checked = true;
this.cBDownloadLangauge.CheckState = System.Windows.Forms.CheckState.Checked;
this.cBDownloadLangauge.Name = "cBDownloadLangauge";
this.cBDownloadLangauge.UseVisualStyleBackColor = true;
this.cBDownloadLangauge.CheckedChanged += new System.EventHandler(this.cBDownloadLangauge_CheckedChanged);
//
// tabLog // tabLog
// //
resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Controls.Add(this.lvDebug); this.tabLog.Controls.Add(this.lvDebug);
this.tabLog.Controls.Add(this.btnClear); this.tabLog.Controls.Add(this.btnClear);
resources.ApplyResources(this.tabLog, "tabLog");
this.tabLog.Name = "tabLog"; this.tabLog.Name = "tabLog";
this.toolTip1.SetToolTip(this.tabLog, resources.GetString("tabLog.ToolTip"));
this.tabLog.UseVisualStyleBackColor = true; this.tabLog.UseVisualStyleBackColor = true;
// //
// saveProfiles // saveProfiles
@ -993,13 +1062,14 @@
// //
// DS4Form // DS4Form
// //
this.AllowDrop = true;
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
this.AllowDrop = true;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White; this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tabMain); this.Controls.Add(this.tabMain);
this.Controls.Add(this.pnlButton); this.Controls.Add(this.pnlButton);
this.Name = "DS4Form"; this.Name = "DS4Form";
this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ScpForm_Closing);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ScpForm_DragEnter);

View File

@ -120,39 +120,85 @@
<data name="chTime.Text" xml:space="preserve"> <data name="chTime.Text" xml:space="preserve">
<value>Ora</value> <value>Ora</value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <data name="lvDebug.ToolTip" xml:space="preserve">
<data name="lBTest.Location" type="System.Drawing.Point, System.Drawing"> <value />
<value>468, 8</value>
</data> </data>
<data name="lBTest.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbTest.ToolTip" xml:space="preserve">
<value>121, 13</value> <value />
</data>
<data name="lBTest.Text" xml:space="preserve">
<value>Usato per testare i valori</value>
</data> </data>
<data name="btnStartStop.Text" xml:space="preserve"> <data name="btnStartStop.Text" xml:space="preserve">
<value>Inizia</value> <value>Inizia</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <data name="btnStartStop.ToolTip" xml:space="preserve">
<data name="lbHelp.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <value />
<value>Bottom, Right</value>
</data> </data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <data name="lbLastMessage.ToolTip" xml:space="preserve">
<data name="lbHelp.AutoSize" type="System.Boolean, mscorlib"> <value />
<value>True</value>
</data> </data>
<data name="lbHelp.Size" type="System.Drawing.Size, System.Drawing"> <data name="llbHelp.ToolTip" xml:space="preserve">
<value>79, 13</value> <value />
</data> </data>
<data name="lbHelp.Text" xml:space="preserve"> <data name="pnlButton.ToolTip" xml:space="preserve">
<value>Hotkeys/About</value> <value />
</data> </data>
<data name="btnClear.Text" xml:space="preserve"> <data name="btnClear.Text" xml:space="preserve">
<value>Pulisci</value> <value>Pulisci</value>
</data> </data>
<data name="btnClear.ToolTip" xml:space="preserve">
<value />
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Inizia</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Apri</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Esci (Mouse Centrale)</value>
</data>
<data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing"> <data name="cMTaskbar.Size" type="System.Drawing.Size, System.Drawing">
<value>245, 164</value> <value>245, 164</value>
</data> </data>
<data name="cMTaskbar.ToolTip" xml:space="preserve">
<value />
</data>
<data name="notifyIcon1.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="notifyIcon1.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
AAABAAYAEBAAAAAAIABoBAAAZgAAACAgAAAAACAAqBAAAM4EAAAwMAAAAAAgAKglAAB2FQAAQEAAAAAA AAABAAYAEBAAAAAAIABoBAAAZgAAACAgAAAAACAAqBAAAM4EAAAwMAAAAAAgAKglAAB2FQAAQEAAAAAA
@ -6325,54 +6371,6 @@
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
</value> </value>
</data> </data>
<data name="editProfileForController1ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController1ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 1</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController2ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 2</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController3ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 3</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="editProfileForController4ToolStripMenuItem.Text" xml:space="preserve">
<value>Modifica Profilo per Controller 4</value>
</data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>241, 6</value>
</data>
<data name="startToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="startToolStripMenuItem.Text" xml:space="preserve">
<value>Inizia</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Apri</value>
</data>
<data name="exitToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 22</value>
</data>
<data name="exitToolStripMenuItem.Text" xml:space="preserve">
<value>Esci (Mouse Centrale)</value>
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Controller</value>
</data>
<data name="pBStatus1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH iVBORw0KGgoAAAANSUhEUgAAACcAAAAUCAYAAAAOTSQ2AAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
@ -6430,10 +6428,19 @@
</value> </value>
</data> </data>
<data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing"> <data name="pBStatus1.Location" type="System.Drawing.Point, System.Drawing">
<value>402, 19</value> <value>412, 19</value>
</data>
<data name="pBStatus1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad2.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC3.Location" type="System.Drawing.Point, System.Drawing">
<value>836, 74</value> <value>835, 74</value>
</data> </data>
<data name="bnEditC3.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnEditC3.Size" type="System.Drawing.Size, System.Drawing">
<value>56, 22</value> <value>56, 22</value>
@ -6441,8 +6448,11 @@
<data name="bnEditC3.Text" xml:space="preserve"> <data name="bnEditC3.Text" xml:space="preserve">
<value>Modifica</value> <value>Modifica</value>
</data> </data>
<data name="bnEditC3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC4.Location" type="System.Drawing.Point, System.Drawing">
<value>836, 103</value> <value>835, 103</value>
</data> </data>
<data name="bnEditC4.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnEditC4.Size" type="System.Drawing.Size, System.Drawing">
<value>56, 23</value> <value>56, 23</value>
@ -6450,11 +6460,23 @@
<data name="bnEditC4.Text" xml:space="preserve"> <data name="bnEditC4.Text" xml:space="preserve">
<value>Modifica</value> <value>Modifica</value>
</data> </data>
<data name="bnEditC4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbPad4.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController1.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController1.Location" type="System.Drawing.Point, System.Drawing">
<value>710, 18</value> <value>718, 18</value>
</data>
<data name="cBController1.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC2.Location" type="System.Drawing.Point, System.Drawing">
<value>836, 46</value> <value>835, 46</value>
</data> </data>
<data name="bnEditC2.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnEditC2.Size" type="System.Drawing.Size, System.Drawing">
<value>56, 22</value> <value>56, 22</value>
@ -6462,14 +6484,23 @@
<data name="bnEditC2.Text" xml:space="preserve"> <data name="bnEditC2.Text" xml:space="preserve">
<value>Modifica</value> <value>Modifica</value>
</data> </data>
<data name="bnEditC2.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController2.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController2.Location" type="System.Drawing.Point, System.Drawing">
<value>710, 46</value> <value>718, 46</value>
</data>
<data name="cBController2.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="cBController3.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController3.Location" type="System.Drawing.Point, System.Drawing">
<value>710, 74</value> <value>718, 74</value>
</data>
<data name="cBController3.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing"> <data name="bnEditC1.Location" type="System.Drawing.Point, System.Drawing">
<value>836, 18</value> <value>835, 18</value>
</data> </data>
<data name="bnEditC1.Size" type="System.Drawing.Size, System.Drawing"> <data name="bnEditC1.Size" type="System.Drawing.Size, System.Drawing">
<value>56, 22</value> <value>56, 22</value>
@ -6477,47 +6508,59 @@
<data name="bnEditC1.Text" xml:space="preserve"> <data name="bnEditC1.Text" xml:space="preserve">
<value>Modifica</value> <value>Modifica</value>
</data> </data>
<data name="bnEditC1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBController4.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController4.Location" type="System.Drawing.Point, System.Drawing">
<value>710, 104</value> <value>718, 104</value>
</data> </data>
<data name="lBSelectedProfile.Location" type="System.Drawing.Point, System.Drawing"> <data name="cBController4.ToolTip" xml:space="preserve">
<value>701, 0</value> <value />
</data> </data>
<data name="lBSelectedProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbSelectedProfile.Location" type="System.Drawing.Point, System.Drawing">
<value>129, 15</value> <value>719, 0</value>
</data> </data>
<data name="lBSelectedProfile.Text" xml:space="preserve"> <data name="lbSelectedProfile.ToolTip" xml:space="preserve">
<value>Profilo Selezionato</value> <value />
</data> </data>
<data name="lBStatus.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbID.ToolTip" xml:space="preserve">
<value>401, 0</value> <value />
</data> </data>
<data name="lBStatus.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbStatus.Location" type="System.Drawing.Point, System.Drawing">
<value>40, 15</value> <value>408, 0</value>
</data> </data>
<data name="lBStatus.Text" xml:space="preserve"> <data name="lbStatus.ToolTip" xml:space="preserve">
<value>Stato</value> <value />
</data> </data>
<data name="lBBattery.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBattery.Location" type="System.Drawing.Point, System.Drawing">
<value>580, 0</value> <value>598, 0</value>
</data> </data>
<data name="lBBattery.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbBattery.ToolTip" xml:space="preserve">
<value>57, 15</value> <value />
</data> </data>
<data name="lBBattery.Text" xml:space="preserve"> <data name="lbBatt1.Location" type="System.Drawing.Point, System.Drawing">
<value>Batteria</value> <value>604, 21</value>
</data> </data>
<data name="lBBatt1.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt1.ToolTip" xml:space="preserve">
<value>589, 21</value> <value />
</data> </data>
<data name="lBBatt2.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt2.Location" type="System.Drawing.Point, System.Drawing">
<value>589, 49</value> <value>604, 49</value>
</data> </data>
<data name="lBBatt3.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt2.ToolTip" xml:space="preserve">
<value>589, 77</value> <value />
</data> </data>
<data name="lBBatt4.Location" type="System.Drawing.Point, System.Drawing"> <data name="lbBatt3.Location" type="System.Drawing.Point, System.Drawing">
<value>589, 107</value> <value>604, 77</value>
</data>
<data name="lbBatt3.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbBatt4.Location" type="System.Drawing.Point, System.Drawing">
<value>604, 107</value>
</data>
<data name="lbBatt4.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="pBStatus2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -6576,7 +6619,10 @@
</value> </value>
</data> </data>
<data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing"> <data name="pBStatus2.Location" type="System.Drawing.Point, System.Drawing">
<value>402, 47</value> <value>412, 47</value>
</data>
<data name="pBStatus2.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="pBStatus3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -6635,7 +6681,10 @@
</value> </value>
</data> </data>
<data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing"> <data name="pBStatus3.Location" type="System.Drawing.Point, System.Drawing">
<value>402, 75</value> <value>412, 75</value>
</data>
<data name="pBStatus3.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="pBStatus4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="pBStatus4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -6694,16 +6743,22 @@
</value> </value>
</data> </data>
<data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing"> <data name="pBStatus4.Location" type="System.Drawing.Point, System.Drawing">
<value>402, 104</value> <value>412, 104</value>
</data> </data>
<data name="lbNoControlers.Text" xml:space="preserve"> <data name="pBStatus4.ToolTip" xml:space="preserve">
<value>Nessun Controller Connesso (Max 4)</value> <value />
</data> </data>
<data name="tabProfiles.Text" xml:space="preserve"> <data name="tLPControllers.ToolTip" xml:space="preserve">
<value>Profili</value> <value />
</data> </data>
<data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbNoControllers.ToolTip" xml:space="preserve">
<value>193, 224</value> <value />
</data>
<data name="tabControllers.Text" xml:space="preserve">
<value>Controller</value>
</data>
<data name="tabControllers.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing"> <data name="editToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>192, 22</value> <value>192, 22</value>
@ -6765,8 +6820,14 @@
<data name="exportToolStripMenuItem.Text" xml:space="preserve"> <data name="exportToolStripMenuItem.Text" xml:space="preserve">
<value>Esporta</value> <value>Esporta</value>
</data> </data>
<data name="tSOptions.Text" xml:space="preserve"> <data name="cMProfile.Size" type="System.Drawing.Size, System.Drawing">
<value>Opzioni Profilo</value> <value>193, 224</value>
</data>
<data name="cMProfile.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lBProfiles.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripLabel1.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 22</value> <value>81, 22</value>
@ -6795,6 +6856,12 @@
<data name="tSBKeepSize.Text" xml:space="preserve"> <data name="tSBKeepSize.Text" xml:space="preserve">
<value>Mantieni questa dimensione della finestra dopo la chiusura</value> <value>Mantieni questa dimensione della finestra dopo la chiusura</value>
</data> </data>
<data name="tSOptions.Text" xml:space="preserve">
<value>Opzioni Profilo</value>
</data>
<data name="tSOptions.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing"> <data name="tsBNewProfle.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 22</value> <value>63, 22</value>
</data> </data>
@ -6884,11 +6951,20 @@
<data name="tSBExportProfile.ToolTipText" xml:space="preserve"> <data name="tSBExportProfile.ToolTipText" xml:space="preserve">
<value>Esporta Profilo Selezionato</value> <value>Esporta Profilo Selezionato</value>
</data> </data>
<data name="toolStrip1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabProfiles.Text" xml:space="preserve">
<value>Profili</value>
</data>
<data name="tabProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabAutoProfiles.Text" xml:space="preserve"> <data name="tabAutoProfiles.Text" xml:space="preserve">
<value>Profili Automatici</value> <value>Profili Automatici</value>
</data> </data>
<data name="tabSettings.Text" xml:space="preserve"> <data name="tabAutoProfiles.ToolTip" xml:space="preserve">
<value>Impostazioni</value> <value />
</data> </data>
<data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing"> <data name="hideDS4CheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>142, 17</value> <value>142, 17</value>
@ -6896,65 +6972,107 @@
<data name="hideDS4CheckBox.Text" xml:space="preserve"> <data name="hideDS4CheckBox.Text" xml:space="preserve">
<value>Nascondi Controller DS4</value> <value>Nascondi Controller DS4</value>
</data> </data>
<data name="hideDS4CheckBox.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBSwipeProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>214, 17</value> <value>214, 17</value>
</data> </data>
<data name="cBSwipeProfiles.Text" xml:space="preserve"> <data name="cBSwipeProfiles.Text" xml:space="preserve">
<value>Swipe sul Touchpad per cambiare profili</value> <value>Swipe sul Touchpad per cambiare profili</value>
</data> </data>
<data name="cBSwipeProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing"> <data name="StartWindowsCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>86, 17</value> <value>86, 17</value>
</data> </data>
<data name="StartWindowsCheckBox.Text" xml:space="preserve"> <data name="StartWindowsCheckBox.Text" xml:space="preserve">
<value>Apri all'Avvio</value> <value>Apri all'Avvio</value>
</data> </data>
<data name="StartWindowsCheckBox.ToolTip" xml:space="preserve">
<value />
</data>
<data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing"> <data name="startMinimizedCheckBox.Size" type="System.Drawing.Size, System.Drawing">
<value>101, 17</value> <value>101, 17</value>
</data> </data>
<data name="startMinimizedCheckBox.Text" xml:space="preserve"> <data name="startMinimizedCheckBox.Text" xml:space="preserve">
<value>Apri Minimizzato</value> <value>Apri Minimizzato</value>
</data> </data>
<data name="startMinimizedCheckBox.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBNotifications.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBNotifications.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 17</value> <value>103, 17</value>
</data> </data>
<data name="cBNotifications.Text" xml:space="preserve"> <data name="cBNotifications.Text" xml:space="preserve">
<value>Mostra Notifiche</value> <value>Mostra Notifiche</value>
</data> </data>
<data name="cBNotifications.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBDisconnectBT.Size" type="System.Drawing.Size, System.Drawing">
<value>190, 17</value> <value>190, 17</value>
</data> </data>
<data name="cBDisconnectBT.Text" xml:space="preserve"> <data name="cBDisconnectBT.Text" xml:space="preserve">
<value>Disconnetti da BT durante l'Arresto</value> <value>Disconnetti da BT durante l'Arresto</value>
</data> </data>
<data name="cBDisconnectBT.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBCloseMini.Size" type="System.Drawing.Size, System.Drawing">
<value>121, 17</value> <value>121, 17</value>
</data> </data>
<data name="cBCloseMini.Text" xml:space="preserve"> <data name="cBCloseMini.Text" xml:space="preserve">
<value>Chiudi Minimizzando</value> <value>Chiudi Minimizzando</value>
</data> </data>
<data name="cBCloseMini.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBQuickCharge.Size" type="System.Drawing.Size, System.Drawing">
<value>92, 17</value> <value>92, 17</value>
</data> </data>
<data name="cBQuickCharge.Text" xml:space="preserve"> <data name="cBQuickCharge.Text" xml:space="preserve">
<value>Carica Veloce</value> <value>Carica Veloce</value>
</data> </data>
<data name="cBQuickCharge.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>179, 17</value> <value>179, 17</value>
</data> </data>
<data name="cBUpdate.Text" xml:space="preserve"> <data name="cBUpdate.Text" xml:space="preserve">
<value>Controlla Aggiornamenti all'Avvio</value> <value>Controlla Aggiornamenti all'Avvio</value>
</data> </data>
<data name="cBUpdate.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBDownloadLangauge.Size" type="System.Drawing.Size, System.Drawing">
<value>244, 17</value>
</data>
<data name="cBDownloadLangauge.Text" xml:space="preserve">
<value>Scarica Pacchetto Lingua con Aggiornamento</value>
</data>
<data name="cBDownloadLangauge.ToolTip" xml:space="preserve">
<value />
</data>
<data name="cBUpdateTime.Items" xml:space="preserve"> <data name="cBUpdateTime.Items" xml:space="preserve">
<value>ore</value> <value>ore</value>
</data> </data>
<data name="cBUpdateTime.Items1" xml:space="preserve"> <data name="cBUpdateTime.Items1" xml:space="preserve">
<value>giorni</value> <value>giorni</value>
</data> </data>
<data name="lBCheckEvery.Size" type="System.Drawing.Size, System.Drawing"> <data name="cBUpdateTime.ToolTip" xml:space="preserve">
<value>71, 13</value> <value />
</data> </data>
<data name="lBCheckEvery.Text" xml:space="preserve"> <data name="lbCheckEvery.ToolTip" xml:space="preserve">
<value>Controlla ogni</value> <value />
</data>
<data name="nUDUpdateTime.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pNUpdate.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbUseXIPorts.Size" type="System.Drawing.Size, System.Drawing">
<value>87, 13</value> <value>87, 13</value>
@ -6962,8 +7080,17 @@
<data name="lbUseXIPorts.Text" xml:space="preserve"> <data name="lbUseXIPorts.Text" xml:space="preserve">
<value>Usa Porte Xinput</value> <value>Usa Porte Xinput</value>
</data> </data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbUseXIPorts.ToolTip" xml:space="preserve">
<value>163, 65</value> <value />
</data>
<data name="nUDXIPorts.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lbLastXIPort.ToolTip" xml:space="preserve">
<value />
</data>
<data name="pnlXIPorts.ToolTip" xml:space="preserve">
<value />
</data> </data>
<data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing"> <data name="linkProfiles.Size" type="System.Drawing.Size, System.Drawing">
<value>70, 13</value> <value>70, 13</value>
@ -6971,28 +7098,70 @@
<data name="linkProfiles.Text" xml:space="preserve"> <data name="linkProfiles.Text" xml:space="preserve">
<value>Cartella Profili</value> <value>Cartella Profili</value>
</data> </data>
<data name="linkProfiles.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing"> <data name="lnkControllers.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 13</value> <value>103, 13</value>
</data> </data>
<data name="lnkControllers.Text" xml:space="preserve"> <data name="lnkControllers.Text" xml:space="preserve">
<value>Pannello di Controllo</value> <value>Pannello di Controllo</value>
</data> </data>
<data name="lnkControllers.ToolTip" xml:space="preserve">
<value />
</data>
<data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing"> <data name="linkUninstall.Size" type="System.Drawing.Size, System.Drawing">
<value>113, 13</value> <value>113, 13</value>
</data> </data>
<data name="linkUninstall.Text" xml:space="preserve"> <data name="linkUninstall.Text" xml:space="preserve">
<value>Disinstalla Driver VBus</value> <value>Disinstalla Driver VBus</value>
</data> </data>
<data name="linkUninstall.ToolTip" xml:space="preserve">
<value />
</data>
<data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing"> <data name="linkSetup.Size" type="System.Drawing.Size, System.Drawing">
<value>157, 13</value> <value>157, 13</value>
</data> </data>
<data name="linkSetup.Text" xml:space="preserve"> <data name="linkSetup.Text" xml:space="preserve">
<value>Configurazione Controller/Driver</value> <value>Configurazione Controller/Driver</value>
</data> </data>
<data name="linkSetup.ToolTip" xml:space="preserve">
<value />
</data>
<data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing"> <data name="lLBUpdate.Size" type="System.Drawing.Size, System.Drawing">
<value>138, 13</value> <value>138, 13</value>
</data> </data>
<data name="lLBUpdate.Text" xml:space="preserve"> <data name="lLBUpdate.Text" xml:space="preserve">
<value>Controlla Aggiornamenti Ora</value> <value>Controlla Aggiornamenti Ora</value>
</data> </data>
<data name="lLBUpdate.ToolTip" xml:space="preserve">
<value />
</data>
<data name="flowLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>260, 10</value>
</data>
<data name="flowLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>163, 65</value>
</data>
<data name="flowLayoutPanel1.ToolTip" xml:space="preserve">
<value />
</data>
<data name="fLPSettings.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabSettings.Text" xml:space="preserve">
<value>Impostazioni</value>
</data>
<data name="tabSettings.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabLog.ToolTip" xml:space="preserve">
<value />
</data>
<data name="tabMain.ToolTip" xml:space="preserve">
<value />
</data>
<data name="$this.ToolTip" xml:space="preserve">
<value />
</data>
</root> </root>

File diff suppressed because it is too large Load Diff

View File

@ -142,30 +142,6 @@
<data name="linkDonate.Text" xml:space="preserve"> <data name="linkDonate.Text" xml:space="preserve">
<value>Spenden via Paypal</value> <value>Spenden via Paypal</value>
</data> </data>
<data name="tPHotkeys.Size" type="System.Drawing.Size, System.Drawing">
<value>574, 352</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Makros</value>
</data>
<data name="lbTranslators.Size" type="System.Drawing.Size, System.Drawing">
<value>61, 13</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Übersetzer:</value>
</data>
<data name="lbLinkText.Location" type="System.Drawing.Point, System.Drawing">
<value>3, 336</value>
</data>
<data name="tPCredits.Size" type="System.Drawing.Size, System.Drawing">
<value>574, 352</value>
</data>
<data name="tCAbout.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 19</value>
</data>
<data name="tCAbout.Size" type="System.Drawing.Size, System.Drawing">
<value>582, 378</value>
</data>
<data name="lbHotkeys.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbHotkeys.Size" type="System.Drawing.Size, System.Drawing">
<value>551, 458</value> <value>551, 458</value>
</data> </data>
@ -204,6 +180,30 @@ Scan Code: Tasten werden unterschiedlich interpretiert. Nur für manche Spiele n
*Falls aktiviert</value> *Falls aktiviert</value>
</data> </data>
<data name="tPHotkeys.Size" type="System.Drawing.Size, System.Drawing">
<value>574, 352</value>
</data>
<data name="tPHotkeys.Text" xml:space="preserve">
<value>Makros</value>
</data>
<data name="lbTranslators.Size" type="System.Drawing.Size, System.Drawing">
<value>61, 13</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Übersetzer:</value>
</data>
<data name="lbLinkText.Location" type="System.Drawing.Point, System.Drawing">
<value>3, 336</value>
</data>
<data name="tPCredits.Size" type="System.Drawing.Size, System.Drawing">
<value>574, 352</value>
</data>
<data name="tCAbout.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 19</value>
</data>
<data name="tCAbout.Size" type="System.Drawing.Size, System.Drawing">
<value>582, 378</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing"> <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>582, 397</value> <value>582, 397</value>
</data> </data>

View File

@ -136,15 +136,6 @@
<data name="linkDonate.Text" xml:space="preserve"> <data name="linkDonate.Text" xml:space="preserve">
<value>Donazioni via Paypal</value> <value>Donazioni via Paypal</value>
</data> </data>
<data name="tCAbout.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 19</value>
</data>
<data name="tCAbout.Size" type="System.Drawing.Size, System.Drawing">
<value>563, 412</value>
</data>
<data name="tPHotkeys.Size" type="System.Drawing.Size, System.Drawing">
<value>555, 386</value>
</data>
<data name="lbHotkeys.Size" type="System.Drawing.Size, System.Drawing"> <data name="lbHotkeys.Size" type="System.Drawing.Size, System.Drawing">
<value>532, 476</value> <value>532, 476</value>
</data> </data>
@ -183,14 +174,31 @@ Scansiona Codice: I Tasti sono interpretati differentemente. Potrebbe essere nec
*Se abilitato</value> *Se abilitato</value>
</data> </data>
<data name="tPHotkeys.Size" type="System.Drawing.Size, System.Drawing">
<value>555, 386</value>
</data>
<data name="lbTranslators.Size" type="System.Drawing.Size, System.Drawing">
<value>52, 13</value>
</data>
<data name="lbTranslators.Text" xml:space="preserve">
<value>Traduttori</value>
</data>
<data name="lbLinkText.Location" type="System.Drawing.Point, System.Drawing">
<value>3, 370</value>
</data>
<data name="tPCredits.Size" type="System.Drawing.Size, System.Drawing"> <data name="tPCredits.Size" type="System.Drawing.Size, System.Drawing">
<value>555, 386</value> <value>555, 386</value>
</data> </data>
<data name="tPCredits.Text" xml:space="preserve">
<value>Crediti</value>
</data>
<data name="tCAbout.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 19</value>
</data>
<data name="tCAbout.Size" type="System.Drawing.Size, System.Drawing">
<value>563, 412</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing"> <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>563, 431</value> <value>563, 431</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
</root> </root>

View File

@ -171,8 +171,8 @@
<data name="linkDonate.AutoSize" type="System.Boolean, mscorlib"> <data name="linkDonate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
</data> </data>
<data name="lbTranslators.Text" xml:space="preserve"> <data name="&gt;&gt;lbGerman.Parent" xml:space="preserve">
<value>Translators:</value> <value>tLPTranslators</value>
</data> </data>
<data name="&gt;&gt;lbHotkeys.Type" xml:space="preserve"> <data name="&gt;&gt;lbHotkeys.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
@ -354,8 +354,8 @@
<data name="lbTranslators.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> <data name="lbTranslators.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="&gt;&gt;$this.Name" xml:space="preserve"> <data name="lbLinkText.Size" type="System.Drawing.Size, System.Drawing">
<value>Hotkeys</value> <value>103, 13</value>
</data> </data>
<data name="linkInhexSTER.AutoSize" type="System.Boolean, mscorlib"> <data name="linkInhexSTER.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -369,9 +369,6 @@
<data name="linkElectro.TabIndex" type="System.Int32, mscorlib"> <data name="linkElectro.TabIndex" type="System.Int32, mscorlib">
<value>18</value> <value>18</value>
</data> </data>
<data name="&gt;&gt;lbItalianT.Parent" xml:space="preserve">
<value>tLPTranslators</value>
</data>
<data name="lbLinkText.Text" xml:space="preserve"> <data name="lbLinkText.Text" xml:space="preserve">
<value>Links displayed here</value> <value>Links displayed here</value>
</data> </data>
@ -393,9 +390,6 @@
<data name="tPHotkeys.TabIndex" type="System.Int32, mscorlib"> <data name="tPHotkeys.TabIndex" type="System.Int32, mscorlib">
<value>0</value> <value>0</value>
</data> </data>
<data name="lbLinkText.Size" type="System.Drawing.Size, System.Drawing">
<value>103, 13</value>
</data>
<data name="&gt;&gt;lbRussian.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lbRussian.ZOrder" xml:space="preserve">
<value>4</value> <value>4</value>
</data> </data>
@ -429,6 +423,9 @@
<data name="linkJays2Kings.AutoSize" type="System.Boolean, mscorlib"> <data name="linkJays2Kings.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
</data> </data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>Hotkeys</value>
</data>
<data name="lbAbout.TabIndex" type="System.Int32, mscorlib"> <data name="lbAbout.TabIndex" type="System.Int32, mscorlib">
<value>0</value> <value>0</value>
</data> </data>
@ -450,6 +447,9 @@
<data name="&gt;&gt;linkInhexSTER.ZOrder" xml:space="preserve"> <data name="&gt;&gt;linkInhexSTER.ZOrder" xml:space="preserve">
<value>7</value> <value>7</value>
</data> </data>
<data name="$this.MinimumSize" type="System.Drawing.Size, System.Drawing">
<value>507, 428</value>
</data>
<data name="lbRussian.Text" xml:space="preserve"> <data name="lbRussian.Text" xml:space="preserve">
<value>Russian/ру́сский язы́к</value> <value>Russian/ру́сский язы́к</value>
</data> </data>
@ -558,8 +558,8 @@
<data name="tPCredits.Size" type="System.Drawing.Size, System.Drawing"> <data name="tPCredits.Size" type="System.Drawing.Size, System.Drawing">
<value>559, 383</value> <value>559, 383</value>
</data> </data>
<data name="lbRussian.TabIndex" type="System.Int32, mscorlib"> <data name="&gt;&gt;lbItalianT.Parent" xml:space="preserve">
<value>13</value> <value>tLPTranslators</value>
</data> </data>
<data name="tCAbout.Size" type="System.Drawing.Size, System.Drawing"> <data name="tCAbout.Size" type="System.Drawing.Size, System.Drawing">
<value>567, 409</value> <value>567, 409</value>
@ -567,12 +567,12 @@
<data name="&gt;&gt;lbGerman.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lbGerman.ZOrder" xml:space="preserve">
<value>0</value> <value>0</value>
</data> </data>
<data name="lbRussian.TabIndex" type="System.Int32, mscorlib">
<value>13</value>
</data>
<data name="&gt;&gt;lbRussian.Type" xml:space="preserve"> <data name="&gt;&gt;lbRussian.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="tLPTranslators.Location" type="System.Drawing.Point, System.Drawing">
<value>2, 109</value>
</data>
<data name="&gt;&gt;$this.Type" xml:space="preserve"> <data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
@ -633,14 +633,14 @@
<data name="linkDonate.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="linkDonate.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Right</value> <value>Top, Right</value>
</data> </data>
<data name="&gt;&gt;lbGerman.Type" xml:space="preserve"> <data name="lbTranslators.Text" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>Translators:</value>
</data> </data>
<data name="linkSourceCode.Size" type="System.Drawing.Size, System.Drawing"> <data name="linkSourceCode.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 13</value> <value>69, 13</value>
</data> </data>
<data name="&gt;&gt;lbGerman.Parent" xml:space="preserve"> <data name="tLPTranslators.Location" type="System.Drawing.Point, System.Drawing">
<value>tLPTranslators</value> <value>2, 109</value>
</data> </data>
<data name="&gt;&gt;linkJays2Kings.Type" xml:space="preserve"> <data name="&gt;&gt;linkJays2Kings.Type" xml:space="preserve">
<value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
@ -782,13 +782,13 @@ Scan Code: Keys are interpreted differently. May be needed for certain games
<data name="&gt;&gt;linkSourceCode.ZOrder" xml:space="preserve"> <data name="&gt;&gt;linkSourceCode.ZOrder" xml:space="preserve">
<value>3</value> <value>3</value>
</data> </data>
<data name="$this.MinimumSize" type="System.Drawing.Size, System.Drawing"> <data name="&gt;&gt;lbGerman.Type" xml:space="preserve">
<value>507, 428</value> <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>
<metadata name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>de-DE</value> <value>it-IT</value>
</metadata> </metadata>
</root> </root>

View File

@ -542,6 +542,7 @@ namespace DS4Windows
Global.MainColor[device] = new DS4Color((byte)tBRedBar.Value, (byte)tBGreenBar.Value, (byte)tBBlueBar.Value); Global.MainColor[device] = new DS4Color((byte)tBRedBar.Value, (byte)tBGreenBar.Value, (byte)tBBlueBar.Value);
Global.LowColor[device] = new DS4Color((byte)tBLowRedBar.Value, (byte)tBLowGreenBar.Value, (byte)tBLowBlueBar.Value); Global.LowColor[device] = new DS4Color((byte)tBLowRedBar.Value, (byte)tBLowGreenBar.Value, (byte)tBLowBlueBar.Value);
Global.ShiftColor[device] = new DS4Color((byte)tBShiftRedBar.Value, (byte)tBShiftGreenBar.Value, (byte)tBShiftBlueBar.Value); Global.ShiftColor[device] = new DS4Color((byte)tBShiftRedBar.Value, (byte)tBShiftGreenBar.Value, (byte)tBShiftBlueBar.Value);
Global.ChargingColor[device] = new DS4Color(btnChargingColor.BackColor);
Global.FlashType[device] = (byte)cBFlashType.SelectedIndex; Global.FlashType[device] = (byte)cBFlashType.SelectedIndex;
if (btnFlashColor.BackColor != pBController.BackColor) if (btnFlashColor.BackColor != pBController.BackColor)
Global.FlashColor[device] = new DS4Color(btnFlashColor.BackColor); Global.FlashColor[device] = new DS4Color(btnFlashColor.BackColor);
@ -724,6 +725,7 @@ namespace DS4Windows
} }
if (device < 4) if (device < 4)
DS4LightBar.forcelight[device] = false; DS4LightBar.forcelight[device] = false;
Global.ChargingColor[device] = new DS4Color(btnChargingColor.BackColor);
} }
private void advColorDialog_OnUpdateColor(object sender, EventArgs e) private void advColorDialog_OnUpdateColor(object sender, EventArgs e)
{ {

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.23")] [assembly: AssemblyVersion("1.4.231")]
[assembly: AssemblyFileVersion("1.4.23")] [assembly: AssemblyFileVersion("1.4.231")]

View File

@ -513,4 +513,13 @@
<data name="XinputPorts" xml:space="preserve"> <data name="XinputPorts" xml:space="preserve">
<value>Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP</value> <value>Usa porte più alte se ricevi conflitti in altri programmi emulatori X360, come il tool SCP</value>
</data> </data>
<data name="LatencyNotOverTen" xml:space="preserve">
<value>Latenza del Controller *number* ora inferiore a 10ms</value>
</data>
<data name="LatencyOverTen" xml:space="preserve">
<value>Latenza del Controller *number* superiore a 10ms</value>
</data>
<data name="NotUsingProfile" xml:space="preserve">
<value>Il Controller *number* non sta utilizzando alcun profilo</value>
</data>
</root> </root>