diff --git a/Songify Slim/App.config b/Songify Slim/App.config
index 463eefd6..33fbff53 100644
--- a/Songify Slim/App.config
+++ b/Songify Slim/App.config
@@ -153,7 +153,7 @@
{artist} - {title} requested by @{user} has been added to the queue.
- False
+ True
10
diff --git a/Songify Slim/MainWindow.xaml b/Songify Slim/MainWindow.xaml
index d38c19fa..a0e2618f 100644
--- a/Songify Slim/MainWindow.xaml
+++ b/Songify Slim/MainWindow.xaml
@@ -136,9 +136,16 @@
-
-
-
+
+
+
+
+
+
+ Songify.Rocks
+
+
+
- False
+ True
10
diff --git a/Songify Slim/SettingsWindow.xaml b/Songify Slim/SettingsWindow.xaml
index 9f4df0df..57422ed4 100644
--- a/Songify Slim/SettingsWindow.xaml
+++ b/Songify Slim/SettingsWindow.xaml
@@ -92,7 +92,7 @@
Focusable="False" FontFamily="Segoe UI" HeaderFontFamily="Segoe UI" FontSize="12"
controls:ControlsHelper.HeaderFontSize="12" ContentPadding="0"
controls:ControlsHelper.HeaderMargin="0" Width="324" Height="36" Checked="ChbxSplit_Checked" Unchecked="ChbxSplit_Checked" />
-
+
@@ -124,7 +124,7 @@
-
+
diff --git a/Songify Slim/Window_Botresponse.xaml b/Songify Slim/Window_Botresponse.xaml
index 6bfe2ee6..3b085e3b 100644
--- a/Songify Slim/Window_Botresponse.xaml
+++ b/Songify Slim/Window_Botresponse.xaml
@@ -3,26 +3,25 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Songify_Slim"
+ xmlns:local="clr-namespace:Songify_Slim.Properties"
mc:Ignorable="d"
xmlns:controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
Title="Bot Responses" Height="312.333" Width="629" Loaded="MetroWindow_Loaded">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Songify Slim/Window_Botresponse.xaml.cs b/Songify Slim/Window_Botresponse.xaml.cs
index c8277253..0f3c0296 100644
--- a/Songify Slim/Window_Botresponse.xaml.cs
+++ b/Songify Slim/Window_Botresponse.xaml.cs
@@ -65,6 +65,16 @@ private void tb_Success_TextChanged(object sender, TextChangedEventArgs e)
private void MetroWindow_Loaded(object sender, RoutedEventArgs e)
{
+ if(Settings.Language == "de-DE")
+ {
+ tb_ArtistBlocked.Margin = new Thickness(230, tb_ArtistBlocked.Margin.Top, tb_ArtistBlocked.Margin.Right, tb_ArtistBlocked.Margin.Bottom);
+ tb_SongInQueue.Margin = new Thickness(230, tb_SongInQueue.Margin.Top, tb_SongInQueue.Margin.Right, tb_SongInQueue.Margin.Bottom);
+ tb_MaxSongs.Margin = new Thickness(230, tb_MaxSongs.Margin.Top, tb_MaxSongs.Margin.Right, tb_MaxSongs.Margin.Bottom);
+ tb_MaxLength.Margin = new Thickness(230, tb_MaxLength.Margin.Top, tb_MaxLength.Margin.Right, tb_MaxLength.Margin.Bottom);
+ tb_Error.Margin = new Thickness(230, tb_Error.Margin.Top, tb_Error.Margin.Right, tb_Error.Margin.Bottom);
+ tb_Success.Margin = new Thickness(230, tb_Success.Margin.Top, tb_Success.Margin.Right, tb_Success.Margin.Bottom);
+ }
+
tb_ArtistBlocked.Text = Settings.Bot_Resp_Blacklist;
tb_SongInQueue.Text = Settings.Bot_Resp_IsInQueue;
tb_MaxSongs.Text = Settings.Bot_Resp_MaxReq;