From f0de8131ec2a409b0ee8df059b1be2ae6dffd84f Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 28 Jan 2020 18:07:17 +0300 Subject: [PATCH] Improve phrases for scheduled messages. --- Telegram/Resources/langs/lang.strings | 1 + Telegram/SourceFiles/boxes/send_files_box.cpp | 6 +++++- .../SourceFiles/history/view/history_view_schedule_box.cpp | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index c1b6641db..b9af988c1 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1268,6 +1268,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_cant_invite_make_admin" = "Make admin"; "lng_send_button" = "Send"; +"lng_schedule_button" = "Schedule"; "lng_send_silent_message" = "Send without sound"; "lng_schedule_message" = "Schedule message"; "lng_reminder_message" = "Set a reminder"; diff --git a/Telegram/SourceFiles/boxes/send_files_box.cpp b/Telegram/SourceFiles/boxes/send_files_box.cpp index cb9075432..04376241a 100644 --- a/Telegram/SourceFiles/boxes/send_files_box.cpp +++ b/Telegram/SourceFiles/boxes/send_files_box.cpp @@ -1832,7 +1832,11 @@ void SendFilesBox::setupShadows( } void SendFilesBox::prepare() { - _send = addButton(tr::lng_send_button(), [=] { send({}); }); + _send = addButton( + (_sendType == Api::SendType::Normal + ? tr::lng_send_button() + : tr::lng_schedule_button()), + [=] { send({}); }); if (_sendType == Api::SendType::Normal) { SetupSendMenuAndShortcuts( _send, diff --git a/Telegram/SourceFiles/history/view/history_view_schedule_box.cpp b/Telegram/SourceFiles/history/view/history_view_schedule_box.cpp index d543948b7..13abb00e7 100644 --- a/Telegram/SourceFiles/history/view/history_view_schedule_box.cpp +++ b/Telegram/SourceFiles/history/view/history_view_schedule_box.cpp @@ -688,7 +688,7 @@ void ScheduleBox( }, timeInput->lifetime()); box->setFocusCallback([=] { timeInput->setFocusFast(); }); - const auto submit = box->addButton(tr::lng_settings_save(), [=] { + const auto submit = box->addButton(tr::lng_schedule_button(), [=] { save(false); }); SetupSendMenuAndShortcuts(