diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 83516eb28..4a3241105 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1409,7 +1409,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_menu_formatting_link_edit" = "Edit link"; "lng_menu_formatting_clear" = "Plain text"; "lng_formatting_link_create_title" = "Create link"; -"lng_formatting_link_edit_title" = "Create link"; +"lng_formatting_link_edit_title" = "Edit link"; "lng_formatting_link_text" = "Text"; "lng_formatting_link_url" = "URL"; "lng_formatting_link_create" = "Create"; diff --git a/Telegram/SourceFiles/chat_helpers/message_field.cpp b/Telegram/SourceFiles/chat_helpers/message_field.cpp index d07540ab8..494a2a384 100644 --- a/Telegram/SourceFiles/chat_helpers/message_field.cpp +++ b/Telegram/SourceFiles/chat_helpers/message_field.cpp @@ -155,7 +155,10 @@ void EditLinkBox::prepare() { } }); - setTitle(langFactory(lng_formatting_link_create_title)); + const auto title = url->getLastText().isEmpty() + ? lng_formatting_link_create_title + : lng_formatting_link_edit_title; + setTitle(langFactory(title)); addButton(langFactory(lng_formatting_link_create), submit); addButton(langFactory(lng_cancel), [=] { closeBox(); });