From 8f9995549441565bd363e787ec5ba5dfb06b69b6 Mon Sep 17 00:00:00 2001 From: Taiizor <41683699+Taiizor@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:48:54 +0300 Subject: [PATCH] Translation Improvements --- .../Setting/WallpaperSettingViewModel.cs | 48 +++++++++---------- .../Locales/Portal/Enum/Portal.Enum.DE.xaml | 8 ++++ .../Locales/Portal/Enum/Portal.Enum.EN.xaml | 8 ++++ .../Locales/Portal/Enum/Portal.Enum.ES.xaml | 8 ++++ .../Locales/Portal/Enum/Portal.Enum.FR.xaml | 8 ++++ .../Locales/Portal/Enum/Portal.Enum.PL.xaml | 8 ++++ .../Locales/Portal/Enum/Portal.Enum.TR.xaml | 8 ++++ .../MainWindow/Portal.MainWindow.FR.xaml | 2 +- .../Portal.WallpaperSettingPage.DE.xaml | 30 ++++++++++++ .../Portal.WallpaperSettingPage.EN.xaml | 30 ++++++++++++ .../Portal.WallpaperSettingPage.ES.xaml | 30 ++++++++++++ .../Portal.WallpaperSettingPage.FR.xaml | 30 ++++++++++++ .../Portal.WallpaperSettingPage.PL.xaml | 30 ++++++++++++ .../Portal.WallpaperSettingPage.TR.xaml | 30 ++++++++++++ 14 files changed, 253 insertions(+), 25 deletions(-) diff --git a/src/Portal/Sucrose.Portal/ViewModels/Pages/Setting/WallpaperSettingViewModel.cs b/src/Portal/Sucrose.Portal/ViewModels/Pages/Setting/WallpaperSettingViewModel.cs index 345f66c2f..f886d3a62 100644 --- a/src/Portal/Sucrose.Portal/ViewModels/Pages/Setting/WallpaperSettingViewModel.cs +++ b/src/Portal/Sucrose.Portal/ViewModels/Pages/Setting/WallpaperSettingViewModel.cs @@ -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(); @@ -68,7 +68,7 @@ private void InitializeViewModel() { ScreenType.Items.Add(new ComboBoxItem() { - Content = $"{Type}" + Content = SSRER.GetValue("Portal", "Enum", "ScreenType", $"{Type}") }); } @@ -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(); @@ -96,7 +96,7 @@ private void InitializeViewModel() { StretchType.Items.Add(new ComboBoxItem() { - Content = $"{Type}" + Content = SSRER.GetValue("Portal", "Enum", "StretchType", $"{Type}") }); } @@ -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() { @@ -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() { @@ -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(); @@ -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(); @@ -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(); @@ -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(); @@ -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(); @@ -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(); diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.DE.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.DE.xaml index 37d60cdf4..ff0f79ed8 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.DE.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.DE.xaml @@ -8,6 +8,11 @@ Uniform Uniform Auffüllen + Füllen + Keine + Uniform + Uniform Auffüllen + Schließen Anhalten Fortsetzen @@ -17,4 +22,7 @@ Automatisch Gestuft Acryl + + Arbeitsbereich + Anzeigegrenze \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.EN.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.EN.xaml index 4f65ca3ad..d84c00b8a 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.EN.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.EN.xaml @@ -8,6 +8,11 @@ Uniform Uniform to Fill + Fill + None + Uniform + Uniform to Fill + Close Pause Resume @@ -17,4 +22,7 @@ Auto Tabbed Acrylic + + Working Area + Display Bound \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.ES.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.ES.xaml index 145032cae..be1a6cb0f 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.ES.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.ES.xaml @@ -8,6 +8,11 @@ Uniforme Uniforme Para Rellenar + Rellenar + Ninguno + Uniforme + Uniforme Para Rellenar + Cerrar Pausar Reanudar @@ -17,4 +22,7 @@ Automático Con Pestañas Acrílico + + Área de Trabajo + Límite de Pantalla \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.FR.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.FR.xaml index c7715bbc8..9c2510ea2 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.FR.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.FR.xaml @@ -8,6 +8,11 @@ Uniforme Uniformément Pour Remplir + Remplir + Aucun + Uniforme + Uniformément Pour Remplir + Fermer Mettre en Pause Reprendre @@ -17,4 +22,7 @@ Auto Onglets Acrylique + + Zone de Travail + Limites d'Affichage \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.PL.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.PL.xaml index 433db637a..9a3510af4 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.PL.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.PL.xaml @@ -8,6 +8,11 @@ Jednolite Jednolite Wypełnianie + Wypełnij + Brak + Jednolite + Jednolite Wypełnianie + Zamknij Wstrzymaj Wznów @@ -17,4 +22,7 @@ Auto Z Kartami Akryl + + Obszar Roboczy + Granica Wyświetlacza \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.TR.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.TR.xaml index 5aae8ab88..15792edf0 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.TR.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/Enum/Portal.Enum.TR.xaml @@ -8,6 +8,11 @@ Orantılı Orantılı Doldur + Doldur + Hiçbiri + Orantılı + Orantılı Doldur + Kapat Durdur Sürdür @@ -17,4 +22,7 @@ Otomatik Sekmeli Akrilik + + Çalışma Alanı + Ekran Sınırları \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/MainWindow/Portal.MainWindow.FR.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/MainWindow/Portal.MainWindow.FR.xaml index b07988d5c..980095aad 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/MainWindow/Portal.MainWindow.FR.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/MainWindow/Portal.MainWindow.FR.xaml @@ -14,7 +14,7 @@ Général Personnel Performance - Fond d'écran + Fond d'Ècran Système Faire un Don Autre diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.DE.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.DE.xaml index 78c4d8dd0..3ff6385dd 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.DE.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.DE.xaml @@ -4,4 +4,34 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > WallpaperSettingPage + + Bildschirmlayout + Ändern Sie das Layout Ihrer Hintergrundbilder auf dem Bildschirm. + + Streckmodus + Ändern Sie den Skalierungsmodus für unterstützte Hintergrundbilder. + + Wiederholungsmodus + Ändern Sie das Wiederholungsverhalten für unterstützte Hintergrundbilder. + + Mischen-Modus + Ändern Sie das Mischverhalten für unterstützte Hintergrundbilder. + + Gif-Player + Wählen Sie das Plugin aus, das Gif-Themen-Hintergrundbilder in Ihrer Bibliothek abspielen wird. + + Video-Player + Wählen Sie das Plugin aus, das Video-Themen-Hintergrundbilder in Ihrer Bibliothek abspielen wird. + + Url-Engine + Wählen Sie die Engine aus, die Url-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird. + + Web-Engine + Wählen Sie die Engine aus, die Web-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird. + + YouTube-Engine + Wählen Sie die Engine aus, die YouTube-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird. + + Application-Engine + Wählen Sie die Engine aus, die Application-Themen-Hintergrundbilder in Ihrer Bibliothek ausführen wird. \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.EN.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.EN.xaml index 78c4d8dd0..3c42a44da 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.EN.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.EN.xaml @@ -4,4 +4,34 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > WallpaperSettingPage + + Screen Layout + Change the layout of your wallpapers on the screen. + + Stretch Mode + Change the scaling mode for supported wallpapers. + + Loop Mode + Change the looping behavior for supported wallpapers. + + Shuffle Mode + Change the shuffle behavior for supported wallpapers. + + Gif Player + Select the plugin that will play Gif-themed wallpapers in your library. + + Video Player + Select the plugin that will play Video-themed wallpapers in your library. + + Url Engine + Select the engine that will run Url-themed wallpapers in your library. + + Web Engine + Select the engine that will run Web-themed wallpapers in your library. + + YouTube Engine + Select the engine that will run YouTube-themed wallpapers in your library. + + Application Engine + Select the engine that will run Application-themed wallpapers in your library. \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.ES.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.ES.xaml index 78c4d8dd0..18d605a62 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.ES.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.ES.xaml @@ -4,4 +4,34 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > WallpaperSettingPage + + Diseño de Pantalla + Cambie la disposición de sus fondos de pantalla en la pantalla. + + Modo de Estiramiento + Cambie el modo de escalado para fondos de pantalla compatibles. + + Modo de Repetición + Cambie el comportamiento de repetición para fondos de pantalla compatibles. + + Modo de Mezcla + Cambie el comportamiento de mezcla para fondos de pantalla compatibles. + + Reproductor de Gif + Seleccione el complemento que reproducirá fondos de pantalla temáticos de Gif en su biblioteca. + + Reproductor de Video + Seleccione el complemento que reproducirá fondos de pantalla temáticos de Video en su biblioteca. + + Motor de Url + Seleccione el motor que ejecutará fondos de pantalla temáticos de Url en su biblioteca. + + Motor Web + Seleccione el motor que ejecutará fondos de pantalla temáticos de Web en su biblioteca. + + Motor de YouTube + Seleccione el motor que ejecutará fondos de pantalla temáticos de YouTube en su biblioteca. + + Motor de Application + Seleccione el motor que ejecutará fondos de pantalla temáticos de Application en su biblioteca. \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.FR.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.FR.xaml index 78c4d8dd0..52f0fd708 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.FR.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.FR.xaml @@ -4,4 +4,34 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > WallpaperSettingPage + + Disposition de l'écran + Modifiez la disposition de vos fonds d'écran sur l'écran. + + Mode d'étirement + Modifiez le mode de mise à l'échelle pour les fonds d'écran pris en charge. + + Mode de Boucle + Modifiez le comportement de bouclage pour les fonds d'écran pris en charge. + + Mode de Mélange + Modifiez le comportement de mélange pour les fonds d'écran pris en charge. + + Lecteur Gif + Sélectionnez le plugin qui lira les fonds d'écran thématiques Gif de votre bibliothèque. + + Lecteur Video + Sélectionnez le plugin qui lira les fonds d'écran thématiques Video de votre bibliothèque. + + Moteur Url + Sélectionnez le moteur qui exécutera les fonds d'écran thématiques Url de votre bibliothèque. + + Moteur Web + Sélectionnez le moteur qui exécutera les fonds d'écran thématiques Web de votre bibliothèque. + + Moteur YouTube + Sélectionnez le moteur qui exécutera les fonds d'écran thématiques YouTube de votre bibliothèque. + + Moteur Application + Sélectionnez le moteur qui exécutera les fonds d'écran thématiques Application de votre bibliothèque. \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.PL.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.PL.xaml index 78c4d8dd0..2b343c96a 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.PL.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.PL.xaml @@ -4,4 +4,34 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > WallpaperSettingPage + + Układ Ekranu + Zmień układ swoich tapet na ekranie. + + Tryb Rozciągania + Zmień tryb skalowania dla obsługiwanych tapet. + + Tryb Pętli + Zmień zachowanie pętli dla obsługiwanych tapet. + + Tryb Tasowania + Zmień zachowanie tasowania dla obsługiwanych tapet. + + Odtwarzacz Gif + Wybierz wtyczkę, która odtworzy tematyczne tapety Gif w twojej bibliotece. + + Odtwarzacz Video + Wybierz wtyczkę, która odtworzy tematyczne tapety Video w twojej bibliotece. + + Silnik Url + Wybierz silnik, który uruchomi tematyczne tapety Url w twojej bibliotece. + + Silnik Web + Wybierz silnik, który uruchomi tematyczne tapety Web w twojej bibliotece. + + Silnik YouTube + Wybierz silnik, który uruchomi tematyczne tapety YouTube w twojej bibliotece. + + Silnik Application + Wybierz silnik, który uruchomi tematyczne tapety Application w twojej bibliotece. \ No newline at end of file diff --git a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.TR.xaml b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.TR.xaml index 78c4d8dd0..f7a8516e8 100644 --- a/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.TR.xaml +++ b/src/Shared/Sucrose.Shared.Resources/Locales/Portal/SettingPage/WallpaperSettingPage/Portal.WallpaperSettingPage.TR.xaml @@ -4,4 +4,34 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" > WallpaperSettingPage + + Ekran Yerleşimi + Duvar kağıtlarınızın ekrandaki yerleşimini değiştirir. + + Sığdırma Metodu + Desteklenen duvar kağıtlarında ölçeklendirmeyi değiştirir. + + Yineleme Durumu + Desteklenen duvar kağıtlarında yineleme durumunu değiştirir. + + Karıştırma Durumu + Desteklenen duvar kağıtlarında karıştırma durumunu değiştirir. + + Gif Eklentisi + Kütüphanenizde bulunan Gif türündeki temaları oynatacak olan eklentiyi seçin. + + Video Eklentisi + Kütüphanenizde bulunan Video türündeki temaları oynatacak olan eklentiyi seçin. + + Url Motoru + Kütüphanenizde bulunan Url türündeki temaları çalıştıracak olan motoru seçin. + + Web Motoru + Kütüphanenizde bulunan Web türündeki temaları çalıştıracak olan motoru seçin. + + YouTube Motoru + Kütüphanenizde bulunan YouTube türündeki temaları çalıştıracak olan motoru seçin. + + Application Motoru + Kütüphanenizde bulunan Application türündeki temaları çalıştıracak olan motoru seçin. \ No newline at end of file