Add theme names to langpack.

This commit is contained in:
John Preston 2019-08-08 10:22:28 +01:00
parent d7f7a03eb4
commit fb00d523c3
2 changed files with 10 additions and 6 deletions

View File

@ -385,6 +385,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
"lng_settings_stickers_emoji" = "Stickers and emoji"; "lng_settings_stickers_emoji" = "Stickers and emoji";
"lng_settings_messages" = "Messages"; "lng_settings_messages" = "Messages";
"lng_settings_themes" = "Themes"; "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_data_storage" = "Data and storage";
"lng_settings_information" = "Edit profile"; "lng_settings_information" = "Edit profile";
"lng_settings_passcode_title" = "Local passcode"; "lng_settings_passcode_title" = "Local passcode";

View File

@ -87,7 +87,7 @@ public:
QColor received; QColor received;
QColor radiobuttonInactive; QColor radiobuttonInactive;
QColor radiobuttonActive; QColor radiobuttonActive;
QString name; tr::phrase<> name;
QString path; QString path;
}; };
DefaultTheme(Scheme scheme, bool checked); DefaultTheme(Scheme scheme, bool checked);
@ -800,7 +800,7 @@ void SetupDefaultThemes(not_null<Ui::VerticalLayout*> container) {
color("ffffff"), color("ffffff"),
color("d7f0ff"), color("d7f0ff"),
color("ffffff"), color("ffffff"),
"Blue", tr::lng_settings_theme_blue,
":/gui/day-blue.tdesktop-theme" ":/gui/day-blue.tdesktop-theme"
}, },
Scheme{ Scheme{
@ -810,7 +810,7 @@ void SetupDefaultThemes(not_null<Ui::VerticalLayout*> container) {
color("ffffff"), color("ffffff"),
color("eaffdc"), color("eaffdc"),
color("ffffff"), color("ffffff"),
"Classic", tr::lng_settings_theme_classic,
QString() QString()
}, },
Scheme{ Scheme{
@ -820,7 +820,7 @@ void SetupDefaultThemes(not_null<Ui::VerticalLayout*> container) {
color("6b808d"), color("6b808d"),
color("6b808d"), color("6b808d"),
color("5ca7d4"), color("5ca7d4"),
"Midnight", tr::lng_settings_theme_midnight,
":/gui/night.tdesktop-theme" ":/gui/night.tdesktop-theme"
}, },
Scheme{ Scheme{
@ -830,7 +830,7 @@ void SetupDefaultThemes(not_null<Ui::VerticalLayout*> container) {
color("6b808d"), color("6b808d"),
color("6b808d"), color("6b808d"),
color("74bf93"), color("74bf93"),
"Matrix", tr::lng_settings_theme_matrix,
":/gui/night-green.tdesktop-theme" ":/gui/night-green.tdesktop-theme"
}, },
}; };
@ -856,7 +856,7 @@ void SetupDefaultThemes(not_null<Ui::VerticalLayout*> container) {
block, block,
group, group,
scheme.type, scheme.type,
scheme.name, scheme.name(tr::now),
st::settingsTheme, st::settingsTheme,
std::move(check)); std::move(check));
weak->setUpdateCallback([=] { result->update(); }); weak->setUpdateCallback([=] { result->update(); });