From a81b7056504d55719988f3106ba4826d5e1a3d41 Mon Sep 17 00:00:00 2001
From: tobias <tobias.ullerich@icloud.com>
Date: Sat, 27 Aug 2016 00:57:34 +0200
Subject: [PATCH] Improved localization

---
 PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties    | 1 +
 PlayWall/src/de/tobias/playpad/Strings.java                     | 1 +
 .../option/project/ProjectSettingsViewController.java           | 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties b/PlayWall/assets/de/tobias/playpad/assets/lang/_de.properties
index 091e56fb..6ee0ca9c 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 c8bbdc92..91b386b7 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 8152b54d..cb1f9111 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());
 	}
-- 
GitLab