diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 58d1eedae..bbafca332 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -4278,6 +4278,9 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "ayu_ContextCopyCallbackData" = "Copy Callback Data"; "ayu_LocalPremiumNotice" = "You're using **local** Telegram Premium.\nIt **won't** give you any benefits, except translator.\n**Enjoy the star near your nickname!**"; "ayu_SettingsWatermark" = "AyuGram developed and maintained by Radolyn Labs."; +"ayu_ConfirmationSticker" = "Do you want to send this sticker?"; +"ayu_ConfirmationGIF" = "Do you want to send this GIF?"; +"ayu_ConfirmationVoice" = "Do you want to send this voice message?"; "ayu_IntroAbout" = "Welcome to the AyuGram Desktop.\nIt's cool and looks less ugly."; "ayu_AboutText1" = "Just a cool Telegram client based on {api_link}."; "ayu_UpdateAyuGram" = "Update AyuGram"; diff --git a/Telegram/SourceFiles/apiwrap.cpp b/Telegram/SourceFiles/apiwrap.cpp index 32017cdd2..80d8520f2 100644 --- a/Telegram/SourceFiles/apiwrap.cpp +++ b/Telegram/SourceFiles/apiwrap.cpp @@ -3980,6 +3980,7 @@ void ApiWrap::sendMediaWithRandomId( auto current = base::unixtime::now(); options.scheduled = current + 12; } + const auto history = item->history(); const auto replyTo = item->replyTo(); diff --git a/Telegram/SourceFiles/ayu/ayu_settings.cpp b/Telegram/SourceFiles/ayu/ayu_settings.cpp index b25118571..1b06dac11 100644 --- a/Telegram/SourceFiles/ayu/ayu_settings.cpp +++ b/Telegram/SourceFiles/ayu/ayu_settings.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_settings.h" #include "rpl/lifetime.h" diff --git a/Telegram/SourceFiles/ayu/ayu_state.cpp b/Telegram/SourceFiles/ayu/ayu_state.cpp index bf3bb20d4..302dce2f9 100644 --- a/Telegram/SourceFiles/ayu/ayu_state.cpp +++ b/Telegram/SourceFiles/ayu/ayu_state.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_state.h" namespace AyuState diff --git a/Telegram/SourceFiles/ayu/database/ayu_database.cpp b/Telegram/SourceFiles/ayu/database/ayu_database.cpp index 8b2dc9926..14cdc0d63 100644 --- a/Telegram/SourceFiles/ayu/database/ayu_database.cpp +++ b/Telegram/SourceFiles/ayu/database/ayu_database.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_database.h" #include "entities.h" diff --git a/Telegram/SourceFiles/ayu/messages/ayu_messages_controller.cpp b/Telegram/SourceFiles/ayu/messages/ayu_messages_controller.cpp index 0dd4cefcd..e9e1a606f 100644 --- a/Telegram/SourceFiles/ayu/messages/ayu_messages_controller.cpp +++ b/Telegram/SourceFiles/ayu/messages/ayu_messages_controller.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_messages_controller.h" #include "ayu/ayu_constants.h" @@ -59,7 +58,8 @@ void map(HistoryMessageEdition &edition, not_null item, EditedMes if (auto edited = item->Get()) { message.editDate = edited->date; - } else { + } + else { message.editDate = base::unixtime::now(); } diff --git a/Telegram/SourceFiles/ayu/sync/ayu_sync_controller.cpp b/Telegram/SourceFiles/ayu/sync/ayu_sync_controller.cpp index 1ce81db64..88714aa13 100644 --- a/Telegram/SourceFiles/ayu/sync/ayu_sync_controller.cpp +++ b/Telegram/SourceFiles/ayu/sync/ayu_sync_controller.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_sync_controller.h" #include "ayu/libs/process.hpp" #include "ayu/sync/models.h" diff --git a/Telegram/SourceFiles/ayu/sync/utils/ayu_pipe_wrapper.cpp b/Telegram/SourceFiles/ayu/sync/utils/ayu_pipe_wrapper.cpp index ff8a0c9f1..af39aa28e 100644 --- a/Telegram/SourceFiles/ayu/sync/utils/ayu_pipe_wrapper.cpp +++ b/Telegram/SourceFiles/ayu/sync/utils/ayu_pipe_wrapper.cpp @@ -4,10 +4,9 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_pipe_wrapper.h" -#include #include "ayu/libs/bit_converter.hpp" +#include using stringbuf = std::basic_stringbuf, std::allocator>; diff --git a/Telegram/SourceFiles/ayu/sync/utils/process_utils.hpp b/Telegram/SourceFiles/ayu/sync/utils/process_utils.hpp index d126aded2..1c467440f 100644 --- a/Telegram/SourceFiles/ayu/sync/utils/process_utils.hpp +++ b/Telegram/SourceFiles/ayu/sync/utils/process_utils.hpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include #include #include diff --git a/Telegram/SourceFiles/ayu/ui/ayu_assets.cpp b/Telegram/SourceFiles/ayu/ui/ayu_assets.cpp index 18fc9b14c..2b78eb2bf 100644 --- a/Telegram/SourceFiles/ayu/ui/ayu_assets.cpp +++ b/Telegram/SourceFiles/ayu/ui/ayu_assets.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_assets.h" #include "ayu/ayu_settings.h" diff --git a/Telegram/SourceFiles/ayu/ui/ayu_lottie.cpp b/Telegram/SourceFiles/ayu/ui/ayu_lottie.cpp index 0b57f59c0..e1f192b2c 100644 --- a/Telegram/SourceFiles/ayu/ui/ayu_lottie.cpp +++ b/Telegram/SourceFiles/ayu/ui/ayu_lottie.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_lottie.h" namespace AyuUi diff --git a/Telegram/SourceFiles/ayu/ui/ayu_lottie.h b/Telegram/SourceFiles/ayu/ui/ayu_lottie.h index 1481084cd..a8159a7ff 100644 --- a/Telegram/SourceFiles/ayu/ui/ayu_lottie.h +++ b/Telegram/SourceFiles/ayu/ui/ayu_lottie.h @@ -12,7 +12,8 @@ namespace AyuUi { -class AyuLottieImpl : public AyuLottie { +class AyuLottieImpl : public AyuLottie +{ std::unique_ptr getLottie(const QString &text) override; }; diff --git a/Telegram/SourceFiles/ayu/ui/boxes/confirmation_box.cpp b/Telegram/SourceFiles/ayu/ui/boxes/confirmation_box.cpp index db9f87b05..69d7adcd7 100644 --- a/Telegram/SourceFiles/ayu/ui/boxes/confirmation_box.cpp +++ b/Telegram/SourceFiles/ayu/ui/boxes/confirmation_box.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "confirmation_box.h" #include "lang_auto.h" #include "ayu/ayu_settings.h" diff --git a/Telegram/SourceFiles/ayu/ui/boxes/edit_deleted_mark.cpp b/Telegram/SourceFiles/ayu/ui/boxes/edit_deleted_mark.cpp index 05bd600dc..45a36d4a2 100644 --- a/Telegram/SourceFiles/ayu/ui/boxes/edit_deleted_mark.cpp +++ b/Telegram/SourceFiles/ayu/ui/boxes/edit_deleted_mark.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "edit_deleted_mark.h" #include "base/random.h" diff --git a/Telegram/SourceFiles/ayu/ui/boxes/edit_edited_mark.cpp b/Telegram/SourceFiles/ayu/ui/boxes/edit_edited_mark.cpp index 9fe89b708..4fdb81762 100644 --- a/Telegram/SourceFiles/ayu/ui/boxes/edit_edited_mark.cpp +++ b/Telegram/SourceFiles/ayu/ui/boxes/edit_edited_mark.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "edit_edited_mark.h" #include "base/random.h" diff --git a/Telegram/SourceFiles/ayu/ui/boxes/message_history_box.cpp b/Telegram/SourceFiles/ayu/ui/boxes/message_history_box.cpp index d41a08c3e..0f0ab553c 100644 --- a/Telegram/SourceFiles/ayu/ui/boxes/message_history_box.cpp +++ b/Telegram/SourceFiles/ayu/ui/boxes/message_history_box.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "message_history_box.h" #include "ayu/ayu_settings.h" #include "ayu/database/ayu_database.h" diff --git a/Telegram/SourceFiles/ayu/ui/boxes/voice_confirmation_box.cpp b/Telegram/SourceFiles/ayu/ui/boxes/voice_confirmation_box.cpp index 84c9ae6f2..d03db95f8 100644 --- a/Telegram/SourceFiles/ayu/ui/boxes/voice_confirmation_box.cpp +++ b/Telegram/SourceFiles/ayu/ui/boxes/voice_confirmation_box.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ui/boxes/confirm_box.h" #include "voice_confirmation_box.h" diff --git a/Telegram/SourceFiles/ayu/ui/context_menu/context_menu.h b/Telegram/SourceFiles/ayu/ui/context_menu/context_menu.h index 10fdb9ead..5bd610903 100644 --- a/Telegram/SourceFiles/ayu/ui/context_menu/context_menu.h +++ b/Telegram/SourceFiles/ayu/ui/context_menu/context_menu.h @@ -83,10 +83,10 @@ namespace AyuUi { -void AddHistoryAction(not_nullmenu, HistoryItem *item); +void AddHistoryAction(not_null menu, HistoryItem *item); -void AddHideMessageAction(not_nullmenu, HistoryItem *item); +void AddHideMessageAction(not_null menu, HistoryItem *item); -void AddReadUntilAction(not_nullmenu, HistoryItem *item); +void AddReadUntilAction(not_null menu, HistoryItem *item); } diff --git a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.cpp b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.cpp index 085f3336c..42d89a862 100644 --- a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.cpp +++ b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.cpp @@ -1,10 +1,9 @@ -/* -This file is part of Telegram Desktop, -the official desktop application for the Telegram messaging service. - -For license and copyright information please follow this link: -https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL -*/ +// This is the source code of AyuGram for Desktop. +// +// We do not and cannot prevent the use of our code, +// but be respectful and credit the original author. +// +// Copyright @Radolyn, 2023 #include "ayu/ui/sections/edited/edited_log_inner.h" #include "history/history.h" diff --git a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.h b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.h index e3a672268..4028e35c3 100644 --- a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.h +++ b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_inner.h @@ -1,10 +1,9 @@ -/* -This file is part of Telegram Desktop, -the official desktop application for the Telegram messaging service. - -For license and copyright information please follow this link: -https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL -*/ +// This is the source code of AyuGram for Desktop. +// +// We do not and cannot prevent the use of our code, +// but be respectful and credit the original author. +// +// Copyright @Radolyn, 2023 #pragma once #include "history/view/history_view_element.h" diff --git a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.cpp b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.cpp index f45769e72..9c4c02664 100644 --- a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.cpp +++ b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.cpp @@ -1,10 +1,9 @@ -/* -This file is part of Telegram Desktop, -the official desktop application for the Telegram messaging service. - -For license and copyright information please follow this link: -https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL -*/ +// This is the source code of AyuGram for Desktop. +// +// We do not and cannot prevent the use of our code, +// but be respectful and credit the original author. +// +// Copyright @Radolyn, 2023 #include #include "ayu/ui/sections/edited/edited_log_item.h" diff --git a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.h b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.h index 09677f1c7..df2fb1a67 100644 --- a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.h +++ b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_item.h @@ -1,10 +1,9 @@ -/* -This file is part of Telegram Desktop, -the official desktop application for the Telegram messaging service. - -For license and copyright information please follow this link: -https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL -*/ +// This is the source code of AyuGram for Desktop. +// +// We do not and cannot prevent the use of our code, +// but be respectful and credit the original author. +// +// Copyright @Radolyn, 2023 #pragma once #include "ayu/database/entities.h" diff --git a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.cpp b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.cpp index e7e448e02..fe962e766 100644 --- a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.cpp +++ b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.cpp @@ -1,10 +1,9 @@ -/* -This file is part of Telegram Desktop, -the official desktop application for the Telegram messaging service. - -For license and copyright information please follow this link: -https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL -*/ +// This is the source code of AyuGram for Desktop. +// +// We do not and cannot prevent the use of our code, +// but be respectful and credit the original author. +// +// Copyright @Radolyn, 2023 #include "ayu/ui/sections/edited/edited_log_section.h" #include "ayu/ui/sections/edited/edited_log_inner.h" diff --git a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.h b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.h index df36a5da9..b35c41382 100644 --- a/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.h +++ b/Telegram/SourceFiles/ayu/ui/sections/edited/edited_log_section.h @@ -1,10 +1,9 @@ -/* -This file is part of Telegram Desktop, -the official desktop application for the Telegram messaging service. - -For license and copyright information please follow this link: -https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL -*/ +// This is the source code of AyuGram for Desktop. +// +// We do not and cannot prevent the use of our code, +// but be respectful and credit the original author. +// +// Copyright @Radolyn, 2023 #pragma once #include "window/section_widget.h" diff --git a/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.cpp b/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.cpp index 3fc30787f..9c9df2e68 100644 --- a/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.cpp +++ b/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "settings_ayu.h" #include "ayu/ayu_settings.h" #include "ayu/sync/ayu_sync_controller.h" diff --git a/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.h b/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.h index 7b20546d7..75166fcb1 100644 --- a/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.h +++ b/Telegram/SourceFiles/ayu/ui/settings/settings_ayu.h @@ -24,7 +24,7 @@ extern base::options::toggle StreamerMode; namespace Settings { -class Ayu: public Section +class Ayu : public Section { public: Ayu(QWidget *parent, not_null controller); diff --git a/Telegram/SourceFiles/ayu/ui/utils/ayu_profile_values.cpp b/Telegram/SourceFiles/ayu/ui/utils/ayu_profile_values.cpp index f9851cee2..082d40c32 100644 --- a/Telegram/SourceFiles/ayu/ui/utils/ayu_profile_values.cpp +++ b/Telegram/SourceFiles/ayu/ui/utils/ayu_profile_values.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_profile_values.h" #include "ayu/ayu_settings.h" #include "data/data_peer.h" diff --git a/Telegram/SourceFiles/ayu/utils/ayu_mapper.cpp b/Telegram/SourceFiles/ayu/utils/ayu_mapper.cpp index 8c54aa038..d7b59fe0d 100644 --- a/Telegram/SourceFiles/ayu/utils/ayu_mapper.cpp +++ b/Telegram/SourceFiles/ayu/utils/ayu_mapper.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "ayu_mapper.h" #include "history/history_item.h" @@ -15,11 +14,12 @@ namespace AyuMapper { -int mapItemFlagsToMTPFlags(not_null item) { +int mapItemFlagsToMTPFlags(not_null item) +{ int flags = 0; const auto thread = item->topic() - ? (Data::Thread*)item->topic() + ? (Data::Thread *)item->topic() : item->history(); const auto unseen = item->unread(thread); if (unseen) { @@ -80,7 +80,6 @@ int mapItemFlagsToMTPFlags(not_null item) { } return flags; - } } diff --git a/Telegram/SourceFiles/ayu/utils/telegram_helpers.cpp b/Telegram/SourceFiles/ayu/utils/telegram_helpers.cpp index a3092a9f2..e339d45e1 100644 --- a/Telegram/SourceFiles/ayu/utils/telegram_helpers.cpp +++ b/Telegram/SourceFiles/ayu/utils/telegram_helpers.cpp @@ -4,7 +4,6 @@ // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 - #include "telegram_helpers.h" #include #include diff --git a/Telegram/SourceFiles/ayu/utils/telegram_helpers.h b/Telegram/SourceFiles/ayu/utils/telegram_helpers.h index 13ef0e412..48cd209c6 100644 --- a/Telegram/SourceFiles/ayu/utils/telegram_helpers.h +++ b/Telegram/SourceFiles/ayu/utils/telegram_helpers.h @@ -22,4 +22,4 @@ ID getDialogIdFromPeer(not_null peer); std::pair serializeTextWithEntities(not_null item); void MarkAsReadChatList(not_null list); -void MarkAsReadThread(not_null thread); +void MarkAsReadThread(not_null thread); diff --git a/Telegram/SourceFiles/chat_helpers/gifs_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/gifs_list_widget.cpp index a40e7f190..2c53418a6 100644 --- a/Telegram/SourceFiles/chat_helpers/gifs_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/gifs_list_widget.cpp @@ -480,11 +480,9 @@ void GifsListWidget::selectInlineResult( if (forceSend || (media && media->image(PhotoSize::Thumbnail)) || (media && media->image(PhotoSize::Large))) { - // why photo type in GIF sender? _photoChosen.fire({ .photo = photo, .options = options }); - } else if (!photo->loading(PhotoSize::Thumbnail)) { photo->load(PhotoSize::Thumbnail, Data::FileOrigin()); } @@ -505,9 +503,9 @@ void GifsListWidget::selectInlineResult( if (settings->gifConfirmation) { Ui::show(Ui::MakeConfirmBox({ - .text = rpl::single(QString("Do you want to send this GIF?")), + .text = tr::ayu_ConfirmationGIF(), .confirmed = sendGIFCallback, - .confirmText = rpl::single(QString("Send")), + .confirmText = tr::lng_send_button() })); } else diff --git a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp index c72c53131..babc4c7e3 100644 --- a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp @@ -1769,9 +1769,9 @@ void StickersListWidget::mouseReleaseEvent(QMouseEvent *e) { }; Ui::show(Ui::MakeConfirmBox({ - .text = rpl::single(QString("Do you want to send this sticker?")), + .text = tr::ayu_ConfirmationSticker(), .confirmed = sendStickerCallback, - .confirmText = rpl::single(QString("Send")), + .confirmText = tr::lng_send_button() })); } else diff --git a/Telegram/SourceFiles/data/data_stories.cpp b/Telegram/SourceFiles/data/data_stories.cpp index c9a5c7dbb..e9474d26a 100644 --- a/Telegram/SourceFiles/data/data_stories.cpp +++ b/Telegram/SourceFiles/data/data_stories.cpp @@ -1314,6 +1314,7 @@ void Stories::sendMarkAsReadRequest( } checkQuitPreventFinished(); }; + const auto api = &_owner->session().api(); api->request(MTPstories_ReadStories( peer->input, diff --git a/Telegram/SourceFiles/history/view/controls/history_view_voice_record_bar.cpp b/Telegram/SourceFiles/history/view/controls/history_view_voice_record_bar.cpp index 1dee0b8c3..febfb4ac3 100644 --- a/Telegram/SourceFiles/history/view/controls/history_view_voice_record_bar.cpp +++ b/Telegram/SourceFiles/history/view/controls/history_view_voice_record_bar.cpp @@ -1509,9 +1509,9 @@ void VoiceRecordBar::stopRecording(StopType type) { if (settings->voiceConfirmation) { Ui::show(AyuUi::MakeConfirmBox({ - .text = rpl::single(QString("Do you want to send voice message?")), + .text = tr::ayu_ConfirmationVoice(), .confirmed = sendVoiceCallback, - .confirmText = rpl::single(QString("Send")) + .confirmText = tr::lng_send_button() })); } else @@ -1602,9 +1602,9 @@ void VoiceRecordBar::requestToSendWithOptions(Api::SendOptions options) { if (settings->voiceConfirmation) { Ui::show(AyuUi::MakeConfirmBox({ - .text = rpl::single(QString("Do you want to send voice message?")), + .text = tr::ayu_ConfirmationVoice(), .confirmed = sendVoiceCallback, - .confirmText = rpl::single(QString("Send")) + .confirmText = tr::lng_send_button() })); } else diff --git a/crowdin.yml b/crowdin.yml deleted file mode 100644 index a9605321e..000000000 --- a/crowdin.yml +++ /dev/null @@ -1,3 +0,0 @@ -files: - - source: /ayu-scripts/desktop-specific.json - translation: /ayu-scripts/translations/%two_letters_code%.json