UI Tweaks

This commit is contained in:
Serge
2024-02-26 14:29:36 +01:00
parent c57a60079c
commit 76f29c5934
4 changed files with 23 additions and 10 deletions

View File

@@ -699,6 +699,15 @@ namespace GHelper.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Disable on lid close.
/// </summary>
internal static string DisableOnLidClose {
get {
return ResourceManager.GetString("DisableOnLidClose", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable screen overdrive.
/// </summary>
@@ -792,7 +801,7 @@ namespace GHelper.Properties {
}
/// <summary>
/// Looks up a localized string similar to Export.
/// Looks up a localized string similar to Export Profile.
/// </summary>
internal static string Export {
get {
@@ -1026,7 +1035,7 @@ namespace GHelper.Properties {
}
/// <summary>
/// Looks up a localized string similar to Import.
/// Looks up a localized string similar to Import Profile.
/// </summary>
internal static string Import {
get {
@@ -1296,7 +1305,7 @@ namespace GHelper.Properties {
}
/// <summary>
/// Looks up a localized string similar to Import failed. Selected file is not a valid mouse profile or corrutpted.
/// Looks up a localized string similar to Import failed. Selected file is not a valid mouse profile or corrutpted..
/// </summary>
internal static string MouseImportFailed {
get {
@@ -1800,7 +1809,7 @@ namespace GHelper.Properties {
}
/// <summary>
/// Looks up a localized string similar to Turn off on battery.
/// Looks up a localized string similar to Disable on battery.
/// </summary>
internal static string TurnOffOnBattery {
get {

View File

@@ -330,6 +330,9 @@
<data name="DisableController" xml:space="preserve">
<value>Disable Controller</value>
</data>
<data name="DisableOnLidClose" xml:space="preserve">
<value>Disable on lid close</value>
</data>
<data name="DisableOverdrive" xml:space="preserve">
<value>Disable screen overdrive</value>
</data>
@@ -699,7 +702,7 @@ Do you still want to continue?</value>
<value>Turned off</value>
</data>
<data name="TurnOffOnBattery" xml:space="preserve">
<value>Turn off on battery</value>
<value>Disable on battery</value>
</data>
<data name="UltimateGPUTooltip" xml:space="preserve">
<value>Routes laptop screen to dGPU, maximizing FPS</value>

View File

@@ -192,7 +192,7 @@ namespace GHelper
//
checkMatrixLid.AutoSize = true;
checkMatrixLid.ForeColor = SystemColors.GrayText;
checkMatrixLid.Location = new Point(286, 126);
checkMatrixLid.Location = new Point(275, 126);
checkMatrixLid.Margin = new Padding(8, 4, 8, 4);
checkMatrixLid.Name = "checkMatrixLid";
checkMatrixLid.Size = new Size(253, 36);
@@ -326,7 +326,7 @@ namespace GHelper
checkMatrix.Location = new Point(27, 126);
checkMatrix.Margin = new Padding(8, 4, 8, 4);
checkMatrix.Name = "checkMatrix";
checkMatrix.Size = new Size(249, 36);
checkMatrix.Size = new Size(241, 36);
checkMatrix.TabIndex = 19;
checkMatrix.Text = Properties.Strings.TurnOffOnBattery;
checkMatrix.UseVisualStyleBackColor = true;

View File

@@ -85,6 +85,7 @@ namespace GHelper
labelPeripherals.Text = Properties.Strings.Peripherals;
checkMatrix.Text = Properties.Strings.TurnOffOnBattery;
checkMatrixLid.Text = Properties.Strings.DisableOnLidClose;
checkStartup.Text = Properties.Strings.RunOnStartup;
buttonMatrix.Text = Properties.Strings.PictureGif;