diff --git a/Telegram/Resources/langs/rewrites/en.json b/Telegram/Resources/langs/rewrites/en.json index 6ba201495..f104fd6c6 100644 --- a/Telegram/Resources/langs/rewrites/en.json +++ b/Telegram/Resources/langs/rewrites/en.json @@ -30,6 +30,7 @@ "ktg_user_status_unaccessible": "account inaccessible", "ktg_settings_show_json_settings": "Show settings file", "ktg_settings_restart": "Restart Kotatogram", + "ktg_copy_btn_callback": "Copy callback data", "ktg_settings_chats": "Chats", "ktg_settings_sticker_height": "Sticker height: {pixels}px", "ktg_settings_sticker_scale_both": "Apply to sticker width", diff --git a/Telegram/SourceFiles/history/history_item_components.cpp b/Telegram/SourceFiles/history/history_item_components.cpp index 26fca0b19..6b65afcd6 100644 --- a/Telegram/SourceFiles/history/history_item_components.cpp +++ b/Telegram/SourceFiles/history/history_item_components.cpp @@ -7,6 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "history/history_item_components.h" +#include "kotato/kotato_lang.h" #include "api/api_text_entities.h" #include "base/qt/qt_key_modifiers.h" #include "lang/lang_keys.h" @@ -580,7 +581,14 @@ QString ReplyMarkupClickHandler::copyToClipboardText() const { QString ReplyMarkupClickHandler::copyToClipboardContextItemText() const { const auto button = getUrlButton(); - return button ? tr::lng_context_copy_link(tr::now) : QString(); + using Type = HistoryMessageMarkupButton::Type; + return button + ? ((button->type == Type::Url || button->type == Type::Auth) + ? tr::lng_context_copy_link(tr::now) + : (button->type == Type::Callback || button->type == Type::CallbackWithPassword) + ? ktr("ktg_copy_btn_callback") + : QString()) + : QString(); } // Finds the corresponding button in the items markup struct. @@ -594,10 +602,13 @@ const HistoryMessageMarkupButton *ReplyMarkupClickHandler::getButton() const { auto ReplyMarkupClickHandler::getUrlButton() const -> const HistoryMessageMarkupButton* { if (const auto button = getButton()) { + /* using Type = HistoryMessageMarkupButton::Type; if (button->type == Type::Url || button->type == Type::Auth) { return button; } + */ + return button; } return nullptr; }