diff --git a/PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties b/PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties index 091e56fb782230e3a4d30ac231bf1a9ca6047121..6ee0ca9c819acf10983f857e0f80ab3386931e1f 100644 --- a/PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties +++ b/PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties @@ -22,6 +22,7 @@ UI.Dialog.Launch.Title=Projekt w UI.Window.Main.Title=Play Wall [Projekt: {} - Profil: {}] UI.Window.Changelog.Title=Versions�nderungen UI.Window.Settings.Title=Einstellungen - {} +UI.Window.ProjectSettings.Title=Projekteinstellungen UI.Window.GlobalSettings.Title=Programmeinstellungen UI.Window.PadSettings.Title=Kacheleinstellungen - {} | {} UI.Window.PadSettings.Title.Empty=Kacheleinstellungen - {} diff --git a/PlayWall/src/de/tobias/playpad/Strings.java b/PlayWall/src/de/tobias/playpad/Strings.java index c8bbdc92a51d05fc1ba435420fba392675835475..91b386b7805dc7af6180a8364447fbea9cbcfb4d 100644 --- a/PlayWall/src/de/tobias/playpad/Strings.java +++ b/PlayWall/src/de/tobias/playpad/Strings.java @@ -21,6 +21,7 @@ public class Strings { public static final String UI_Window_Main_Title = "UI.Window.Main.Title"; public static final String UI_Window_Changelog_Title = "UI.Window.Changelog.Title"; public static final String UI_Window_Settings_Title = "UI.Window.Settings.Title"; + public static final String UI_Window_ProjectSettings_Title = "UI.Window.ProjectSettings.Title"; public static final String UI_Window_GlobalSettings_Title = "UI.Window.GlobalSettings.Title"; public static final String UI_Window_PadSettings_Title = "UI.Window.PadSettings.Title"; public static final String UI_Window_PadSettings_Title_Empty = "UI.Window.PadSettings.Title.Empty"; diff --git a/PlayWall/src/de/tobias/playpad/viewcontroller/option/project/ProjectSettingsViewController.java b/PlayWall/src/de/tobias/playpad/viewcontroller/option/project/ProjectSettingsViewController.java index 8152b54d1efb2a4cebe74a18b03d69efa009056f..cb1f9111b2f5350804dbccc4ca8a3db767f17d78 100644 --- a/PlayWall/src/de/tobias/playpad/viewcontroller/option/project/ProjectSettingsViewController.java +++ b/PlayWall/src/de/tobias/playpad/viewcontroller/option/project/ProjectSettingsViewController.java @@ -71,7 +71,7 @@ public class ProjectSettingsViewController extends ViewController implements IPr stage.setMinWidth(715); stage.setMinHeight(500); - stage.setTitle(Localization.getString(Strings.UI_Window_GlobalSettings_Title)); + stage.setTitle(Localization.getString(Strings.UI_Window_ProjectSettings_Title)); Profile.currentProfile().currentLayout().applyCss(getStage()); }