Skip to content

Commit

Permalink
Translation Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Oct 1, 2023
1 parent e49e0c9 commit 8f99955
Show file tree
Hide file tree
Showing 14 changed files with 253 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ private void InitializeViewModel()
Expandable = false
};

ScreenLayout.Title.Text = "Ekran Yerleşimi";
ScreenLayout.LeftIcon.Symbol = SymbolRegular.DesktopFlow24;
ScreenLayout.Description.Text = "Duvar kağıtlarınızın ekrandaki yerleşimini değiştirir.";
ScreenLayout.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "ScreenLayout");
ScreenLayout.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "ScreenLayout", "Description");

ComboBox ScreenType = new();

Expand All @@ -68,7 +68,7 @@ private void InitializeViewModel()
{
ScreenType.Items.Add(new ComboBoxItem()
{
Content = $"{Type}"
Content = SSRER.GetValue("Portal", "Enum", "ScreenType", $"{Type}")
});
}

Expand All @@ -84,9 +84,9 @@ private void InitializeViewModel()
Expandable = false
};

StretchMode.Title.Text = "Sığdırma Metodu";
StretchMode.LeftIcon.Symbol = SymbolRegular.ArrowMinimize24;
StretchMode.Description.Text = "Desteklenen duvar kağıtlarında ölçeklendirmeyi değiştirir.";
StretchMode.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "StretchMode");
StretchMode.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "StretchMode", "Description");

ComboBox StretchType = new();

Expand All @@ -96,7 +96,7 @@ private void InitializeViewModel()
{
StretchType.Items.Add(new ComboBoxItem()
{
Content = $"{Type}"
Content = SSRER.GetValue("Portal", "Enum", "StretchType", $"{Type}")
});
}

Expand All @@ -112,9 +112,9 @@ private void InitializeViewModel()
Expandable = false
};

LoopMode.Title.Text = "Yineleme Durumu";
LoopMode.LeftIcon.Symbol = SymbolRegular.ArrowRepeatAll24;
LoopMode.Description.Text = "Desteklenen duvar kağıtlarında yineleme durumunu değiştirir.";
LoopMode.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "LoopMode");
LoopMode.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "LoopMode", "Description");

ToggleSwitch LoopState = new()
{
Expand All @@ -134,9 +134,9 @@ private void InitializeViewModel()
Expandable = false
};

ShuffleMode.Title.Text = "Karıştırma Durumu";
ShuffleMode.LeftIcon.Symbol = SymbolRegular.ArrowShuffle24;
ShuffleMode.Description.Text = "Desteklenen duvar kağıtlarında karıştırma durumunu değiştirir.";
ShuffleMode.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "ShuffleMode");
ShuffleMode.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "ShuffleMode", "Description");

ToggleSwitch ShuffleState = new()
{
Expand Down Expand Up @@ -166,9 +166,9 @@ private void InitializeViewModel()
Expandable = false
};

GifPlayer.Title.Text = "Gif Eklentisi";
GifPlayer.LeftIcon.Symbol = SymbolRegular.Gif24;
GifPlayer.Description.Text = "Kütüphanenizde bulunan Gif türündeki temaları oynatacak olan eklentiyi seçin.";
GifPlayer.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "GifPlayer");
GifPlayer.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "GifPlayer", "Description");

ComboBox GifEngine = new();

Expand All @@ -193,9 +193,9 @@ private void InitializeViewModel()
Expandable = false
};

VideoPlayer.Title.Text = "Video Eklentisi";
VideoPlayer.LeftIcon.Symbol = SymbolRegular.VideoClip24;
VideoPlayer.Description.Text = "Kütüphanenizde bulunan Video türündeki temaları oynatacak olan eklentiyi seçin.";
VideoPlayer.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "VideoPlayer");
VideoPlayer.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "VideoPlayer", "Description");

ComboBox VideoEngine = new();

Expand Down Expand Up @@ -230,9 +230,9 @@ private void InitializeViewModel()
Expandable = false
};

UrlPlayer.Title.Text = "Url Motoru";
UrlPlayer.LeftIcon.Symbol = SymbolRegular.WindowDevTools24;
UrlPlayer.Description.Text = "Kütüphanenizde bulunan Url türündeki temaları çalıştıracak olan motoru seçin.";
UrlPlayer.LeftIcon.Symbol = SymbolRegular.SlideLink24;
UrlPlayer.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "UrlPlayer");
UrlPlayer.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "UrlPlayer", "Description");

ComboBox UrlEngine = new();

Expand All @@ -257,9 +257,9 @@ private void InitializeViewModel()
Expandable = false
};

WebPlayer.Title.Text = "Web Motoru";
WebPlayer.LeftIcon.Symbol = SymbolRegular.WindowDevTools24;
WebPlayer.Description.Text = "Kütüphanenizde bulunan Web türündeki temaları çalıştıracak olan motoru seçin.";
WebPlayer.LeftIcon.Symbol = SymbolRegular.GlobeDesktop24;
WebPlayer.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "WebPlayer");
WebPlayer.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "WebPlayer", "Description");

ComboBox WebEngine = new();

Expand All @@ -284,9 +284,9 @@ private void InitializeViewModel()
Expandable = false
};

YouTubePlayer.Title.Text = "YouTube Motoru";
YouTubePlayer.LeftIcon.Symbol = SymbolRegular.VideoRecording20;
YouTubePlayer.Description.Text = "Kütüphanenizde bulunan YouTube türündeki temaları çalıştıracak olan motoru seçin.";
YouTubePlayer.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "YouTubePlayer");
YouTubePlayer.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "YouTubePlayer", "Description");

ComboBox YouTubeEngine = new();

Expand All @@ -311,9 +311,9 @@ private void InitializeViewModel()
Expandable = false
};

ApplicationPlayer.Title.Text = "Application Motoru";
ApplicationPlayer.LeftIcon.Symbol = SymbolRegular.AppGeneric24;
ApplicationPlayer.Description.Text = "Kütüphanenizde bulunan Application türündeki temaları çalıştıracak olan motoru seçin.";
ApplicationPlayer.Title.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "ApplicationPlayer");
ApplicationPlayer.Description.Text = SSRER.GetValue("Portal", "WallpaperSettingPage", "ApplicationPlayer", "Description");

ComboBox ApplicationEngine = new();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<system:String x:Key="Portal.Enum.Stretch.Uniform">Uniform</system:String>
<system:String x:Key="Portal.Enum.Stretch.UniformToFill">Uniform Auffüllen</system:String>

<system:String x:Key="Portal.Enum.StretchType.Fill">Füllen</system:String>
<system:String x:Key="Portal.Enum.StretchType.None">Keine</system:String>
<system:String x:Key="Portal.Enum.StretchType.Uniform">Uniform</system:String>
<system:String x:Key="Portal.Enum.StretchType.UniformToFill">Uniform Auffüllen</system:String>

<system:String x:Key="Portal.Enum.PerformanceType.Close">Schließen</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Pause">Anhalten</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Resume">Fortsetzen</system:String>
Expand All @@ -17,4 +22,7 @@
<system:String x:Key="Portal.Enum.WindowBackdropType.Auto">Automatisch</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Tabbed">Gestuft</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Acrylic">Acryl</system:String>

<system:String x:Key="Portal.Enum.ScreenType.WorkingArea">Arbeitsbereich</system:String>
<system:String x:Key="Portal.Enum.ScreenType.DisplayBound">Anzeigegrenze</system:String>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<system:String x:Key="Portal.Enum.Stretch.Uniform">Uniform</system:String>
<system:String x:Key="Portal.Enum.Stretch.UniformToFill">Uniform to Fill</system:String>

<system:String x:Key="Portal.Enum.StretchType.Fill">Fill</system:String>
<system:String x:Key="Portal.Enum.StretchType.None">None</system:String>
<system:String x:Key="Portal.Enum.StretchType.Uniform">Uniform</system:String>
<system:String x:Key="Portal.Enum.StretchType.UniformToFill">Uniform to Fill</system:String>

<system:String x:Key="Portal.Enum.PerformanceType.Close">Close</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Pause">Pause</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Resume">Resume</system:String>
Expand All @@ -17,4 +22,7 @@
<system:String x:Key="Portal.Enum.WindowBackdropType.Auto">Auto</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Tabbed">Tabbed</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Acrylic">Acrylic</system:String>

<system:String x:Key="Portal.Enum.ScreenType.WorkingArea">Working Area</system:String>
<system:String x:Key="Portal.Enum.ScreenType.DisplayBound">Display Bound</system:String>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<system:String x:Key="Portal.Enum.Stretch.Uniform">Uniforme</system:String>
<system:String x:Key="Portal.Enum.Stretch.UniformToFill">Uniforme Para Rellenar</system:String>

<system:String x:Key="Portal.Enum.StretchType.Fill">Rellenar</system:String>
<system:String x:Key="Portal.Enum.StretchType.None">Ninguno</system:String>
<system:String x:Key="Portal.Enum.StretchType.Uniform">Uniforme</system:String>
<system:String x:Key="Portal.Enum.StretchType.UniformToFill">Uniforme Para Rellenar</system:String>

<system:String x:Key="Portal.Enum.PerformanceType.Close">Cerrar</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Pause">Pausar</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Resume">Reanudar</system:String>
Expand All @@ -17,4 +22,7 @@
<system:String x:Key="Portal.Enum.WindowBackdropType.Auto">Automático</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Tabbed">Con Pestañas</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Acrylic">Acrílico</system:String>

<system:String x:Key="Portal.Enum.ScreenType.WorkingArea">Área de Trabajo</system:String>
<system:String x:Key="Portal.Enum.ScreenType.DisplayBound">Límite de Pantalla</system:String>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<system:String x:Key="Portal.Enum.Stretch.Uniform">Uniforme</system:String>
<system:String x:Key="Portal.Enum.Stretch.UniformToFill">Uniformément Pour Remplir</system:String>

<system:String x:Key="Portal.Enum.StretchType.Fill">Remplir</system:String>
<system:String x:Key="Portal.Enum.StretchType.None">Aucun</system:String>
<system:String x:Key="Portal.Enum.StretchType.Uniform">Uniforme</system:String>
<system:String x:Key="Portal.Enum.StretchType.UniformToFill">Uniformément Pour Remplir</system:String>

<system:String x:Key="Portal.Enum.PerformanceType.Close">Fermer</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Pause">Mettre en Pause</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Resume">Reprendre</system:String>
Expand All @@ -17,4 +22,7 @@
<system:String x:Key="Portal.Enum.WindowBackdropType.Auto">Auto</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Tabbed">Onglets</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Acrylic">Acrylique</system:String>

<system:String x:Key="Portal.Enum.ScreenType.WorkingArea">Zone de Travail</system:String>
<system:String x:Key="Portal.Enum.ScreenType.DisplayBound">Limites d'Affichage</system:String>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<system:String x:Key="Portal.Enum.Stretch.Uniform">Jednolite</system:String>
<system:String x:Key="Portal.Enum.Stretch.UniformToFill">Jednolite Wypełnianie</system:String>

<system:String x:Key="Portal.Enum.StretchType.Fill">Wypełnij</system:String>
<system:String x:Key="Portal.Enum.StretchType.None">Brak</system:String>
<system:String x:Key="Portal.Enum.StretchType.Uniform">Jednolite</system:String>
<system:String x:Key="Portal.Enum.StretchType.UniformToFill">Jednolite Wypełnianie</system:String>

<system:String x:Key="Portal.Enum.PerformanceType.Close">Zamknij</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Pause">Wstrzymaj</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Resume">Wznów</system:String>
Expand All @@ -17,4 +22,7 @@
<system:String x:Key="Portal.Enum.WindowBackdropType.Auto">Auto</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Tabbed">Z Kartami</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Acrylic">Akryl</system:String>

<system:String x:Key="Portal.Enum.ScreenType.WorkingArea">Obszar Roboczy</system:String>
<system:String x:Key="Portal.Enum.ScreenType.DisplayBound">Granica Wyświetlacza</system:String>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<system:String x:Key="Portal.Enum.Stretch.Uniform">Orantılı</system:String>
<system:String x:Key="Portal.Enum.Stretch.UniformToFill">Orantılı Doldur</system:String>

<system:String x:Key="Portal.Enum.StretchType.Fill">Doldur</system:String>
<system:String x:Key="Portal.Enum.StretchType.None">Hiçbiri</system:String>
<system:String x:Key="Portal.Enum.StretchType.Uniform">Orantılı</system:String>
<system:String x:Key="Portal.Enum.StretchType.UniformToFill">Orantılı Doldur</system:String>

<system:String x:Key="Portal.Enum.PerformanceType.Close">Kapat</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Pause">Durdur</system:String>
<system:String x:Key="Portal.Enum.PerformanceType.Resume">Sürdür</system:String>
Expand All @@ -17,4 +22,7 @@
<system:String x:Key="Portal.Enum.WindowBackdropType.Auto">Otomatik</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Tabbed">Sekmeli</system:String>
<system:String x:Key="Portal.Enum.WindowBackdropType.Acrylic">Akrilik</system:String>

<system:String x:Key="Portal.Enum.ScreenType.WorkingArea">Çalışma Alanı</system:String>
<system:String x:Key="Portal.Enum.ScreenType.DisplayBound">Ekran Sınırları</system:String>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<system:String x:Key="Portal.MainWindow.MenuGeneral">Général</system:String>
<system:String x:Key="Portal.MainWindow.MenuPersonal">Personnel</system:String>
<system:String x:Key="Portal.MainWindow.MenuPerformance">Performance</system:String>
<system:String x:Key="Portal.MainWindow.MenuWallpaper">Fond d'écran</system:String>
<system:String x:Key="Portal.MainWindow.MenuWallpaper">Fond d'Ècran</system:String>
<system:String x:Key="Portal.MainWindow.MenuSystem">Système</system:String>
<system:String x:Key="Portal.MainWindow.MenuDonate">Faire un Don</system:String>
<system:String x:Key="Portal.MainWindow.MenuOther">Autre</system:String>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,34 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
>
<system:String x:Key="Portal.WallpaperSettingPage.Title">WallpaperSettingPage</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.ScreenLayout">Bildschirmlayout</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.ScreenLayout.Description">Ändern Sie das Layout Ihrer Hintergrundbilder auf dem Bildschirm.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.StretchMode">Streckmodus</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.StretchMode.Description">Ändern Sie den Skalierungsmodus für unterstützte Hintergrundbilder.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.LoopMode">Wiederholungsmodus</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.LoopMode.Description">Ändern Sie das Wiederholungsverhalten für unterstützte Hintergrundbilder.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.ShuffleMode">Mischen-Modus</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.ShuffleMode.Description">Ändern Sie das Mischverhalten für unterstützte Hintergrundbilder.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.GifPlayer">Gif-Player</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.GifPlayer.Description">Wählen Sie das Plugin aus, das Gif-Themen-Hintergrundbilder in Ihrer Bibliothek abspielen wird.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.VideoPlayer">Video-Player</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.VideoPlayer.Description">Wählen Sie das Plugin aus, das Video-Themen-Hintergrundbilder in Ihrer Bibliothek abspielen wird.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.UrlPlayer">Url-Engine</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.UrlPlayer.Description">Wählen Sie die Engine aus, die Url-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.WebPlayer">Web-Engine</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.WebPlayer.Description">Wählen Sie die Engine aus, die Web-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.YouTubePlayer">YouTube-Engine</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.YouTubePlayer.Description">Wählen Sie die Engine aus, die YouTube-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird.</system:String>

<system:String x:Key="Portal.WallpaperSettingPage.ApplicationPlayer">Application-Engine</system:String>
<system:String x:Key="Portal.WallpaperSettingPage.ApplicationPlayer.Description">Wählen Sie die Engine aus, die Application-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird.</system:String>
</ResourceDictionary>
Loading

0 comments on commit 8f99955

Please sign in to comment.