From fb00d523c3f1593f93c6404783f1fae1719f5dc6 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 8 Aug 2019 10:22:28 +0100 Subject: [PATCH] Add theme names to langpack. --- Telegram/Resources/langs/lang.strings | 4 ++++ Telegram/SourceFiles/settings/settings_chat.cpp | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index ce1365a22..55a039769 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -385,6 +385,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_settings_stickers_emoji" = "Stickers and emoji"; "lng_settings_messages" = "Messages"; "lng_settings_themes" = "Themes"; +"lng_settings_theme_blue" = "Blue"; +"lng_settings_theme_classic" = "Classic"; +"lng_settings_theme_midnight" = "Midnight"; +"lng_settings_theme_matrix" = "Matrix"; "lng_settings_data_storage" = "Data and storage"; "lng_settings_information" = "Edit profile"; "lng_settings_passcode_title" = "Local passcode"; diff --git a/Telegram/SourceFiles/settings/settings_chat.cpp b/Telegram/SourceFiles/settings/settings_chat.cpp index dfc8ecf92..ed3d79a58 100644 --- a/Telegram/SourceFiles/settings/settings_chat.cpp +++ b/Telegram/SourceFiles/settings/settings_chat.cpp @@ -87,7 +87,7 @@ public: QColor received; QColor radiobuttonInactive; QColor radiobuttonActive; - QString name; + tr::phrase<> name; QString path; }; DefaultTheme(Scheme scheme, bool checked); @@ -800,7 +800,7 @@ void SetupDefaultThemes(not_null container) { color("ffffff"), color("d7f0ff"), color("ffffff"), - "Blue", + tr::lng_settings_theme_blue, ":/gui/day-blue.tdesktop-theme" }, Scheme{ @@ -810,7 +810,7 @@ void SetupDefaultThemes(not_null container) { color("ffffff"), color("eaffdc"), color("ffffff"), - "Classic", + tr::lng_settings_theme_classic, QString() }, Scheme{ @@ -820,7 +820,7 @@ void SetupDefaultThemes(not_null container) { color("6b808d"), color("6b808d"), color("5ca7d4"), - "Midnight", + tr::lng_settings_theme_midnight, ":/gui/night.tdesktop-theme" }, Scheme{ @@ -830,7 +830,7 @@ void SetupDefaultThemes(not_null container) { color("6b808d"), color("6b808d"), color("74bf93"), - "Matrix", + tr::lng_settings_theme_matrix, ":/gui/night-green.tdesktop-theme" }, }; @@ -856,7 +856,7 @@ void SetupDefaultThemes(not_null container) { block, group, scheme.type, - scheme.name, + scheme.name(tr::now), st::settingsTheme, std::move(check)); weak->setUpdateCallback([=] { result->update(); });