diff --git a/HeliosDisplayManagement/Resources/Language.Designer.cs b/HeliosDisplayManagement/Resources/Language.Designer.cs
index a94980d..28932cc 100644
--- a/HeliosDisplayManagement/Resources/Language.Designer.cs
+++ b/HeliosDisplayManagement/Resources/Language.Designer.cs
@@ -78,6 +78,15 @@ namespace HeliosDisplayManagement.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Active Profiles.
+ ///
+ internal static string Active_Profiles {
+ get {
+ return ResourceManager.GetString("Active_Profiles", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Another instance of this program is in working state. Please close other instances before trying to switch profile..
///
@@ -547,6 +556,15 @@ namespace HeliosDisplayManagement.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Saved Profiles.
+ ///
+ internal static string Saved_Profiles {
+ get {
+ return ResourceManager.GetString("Saved_Profiles", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Selected file is not a valid executable file..
///
diff --git a/HeliosDisplayManagement/Resources/Language.resx b/HeliosDisplayManagement/Resources/Language.resx
index 4fd5b14..7ca76e4 100644
--- a/HeliosDisplayManagement/Resources/Language.resx
+++ b/HeliosDisplayManagement/Resources/Language.resx
@@ -354,4 +354,10 @@
[Not Owned]
+
+ Active Profiles
+
+
+ Saved Profiles
+
\ No newline at end of file
diff --git a/HeliosDisplayManagement/UIForms/MainForm.cs b/HeliosDisplayManagement/UIForms/MainForm.cs
index db318a1..4d14eef 100644
--- a/HeliosDisplayManagement/UIForms/MainForm.cs
+++ b/HeliosDisplayManagement/UIForms/MainForm.cs
@@ -17,9 +17,9 @@ namespace HeliosDisplayManagement.UIForms
public MainForm()
{
InitializeComponent();
- lv_profiles.Groups.Add(GroupCurrent, "Current");
- lv_profiles.Groups.Add(GroupActive, "Active Profiles");
- lv_profiles.Groups.Add(GroupSaved, "Saved Profiles");
+ lv_profiles.Groups.Add(GroupCurrent, Language.Current);
+ lv_profiles.Groups.Add(GroupActive, Language.Active_Profiles);
+ lv_profiles.Groups.Add(GroupSaved, Language.Saved_Profiles);
}
[DllImport("user32", EntryPoint = "SendMessage", CharSet = CharSet.Auto, SetLastError = true)]