From 97011cd84aacc97a03fb0cd7520958ae9d4d3a8b Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Mon, 29 Oct 2018 10:28:12 +0200 Subject: [PATCH] Convert last mentions of offical in strings --- Telegram/Resources/langs/lang.strings | 6 +++--- Telegram/Resources/uwp/AppX/AppxManifest.xml | 6 +++--- Telegram/SourceFiles/window/main_window.cpp | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 3df7c29c8..3ee4657db 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -163,7 +163,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_pinned_unpin" = "Unpin"; "lng_pinned_notify" = "Notify all members"; -"lng_intro_about" = "Welcome to the official Telegram Desktop app.\nIt's fast and secure."; +"lng_intro_about" = "Welcome to Kepka - the unofficial telegram app.\nIt's fast and secure."; "lng_start_msgs" = "START MESSAGING"; "lng_intro_next" = "NEXT"; @@ -1142,8 +1142,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_box_leave" = "Leave"; "lng_about_version" = "version {version}"; -"lng_about_text_1" = "Official free messaging app based on [a href=\"https://core.telegram.org/api\"]Telegram API[/a]\nfor speed and security."; -"lng_about_text_2" = "This software is licensed under [a href=\"https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE\"]GNU GPL[/a] version 3.\nSource code is available on [a href=\"https://github.com/telegramdesktop/tdesktop\"]GitHub[/a]."; +"lng_about_text_1" = "Unofficial free messaging app based on [a href=\"https://core.telegram.org/api\"]Telegram API[/a]\nfor speed and security."; +"lng_about_text_2" = "This software is licensed under [a href=\"https://github.com/procxx/kepka/blob/dev/LICENSE\"]GNU GPL[/a] version 3.\nSource code is available on [a href=\"https://github.com/procxx/kepka\"]GitHub[/a]."; "lng_about_text_3" = "Visit {faq_open}Telegram FAQ{faq_close} for more info."; "lng_about_done" = "Done"; diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 0f2b36494..912d1a93b 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -12,8 +12,8 @@ Version="1.1.23.0" /> Telegram Desktop - Telegram Messenger LLP - Telegram Desktop official messenger + Pro.cxx + Kepka unofficial Telegram messenger Assets\logo\logo.png @@ -32,7 +32,7 @@ DisplayName="Telegram Desktop" Square150x150Logo="Assets\logo150\logo150.png" Square44x44Logo="Assets\logo44\logo44.png" - Description="Telegram Desktop official messenger" /> + Description="Kepka unofficial Telegram messenger" /> diff --git a/Telegram/SourceFiles/window/main_window.cpp b/Telegram/SourceFiles/window/main_window.cpp index daba15d97..fb90e6563 100644 --- a/Telegram/SourceFiles/window/main_window.cpp +++ b/Telegram/SourceFiles/window/main_window.cpp @@ -50,7 +50,7 @@ QImage LoadLogoNoMargin() { return QImage(qsl(":/gui/art/logo_256_no_margin.png")); } -QIcon CreateOfficialIcon() { +QIcon CreateUnofficialIcon() { auto useNoMarginLogo = (cPlatform() == dbipMac); if (auto messenger = Messenger::InstancePointer()) { return QIcon(App::pixmapFromImageInPlace(useNoMarginLogo ? messenger->logoNoMargin() : messenger->logo())); @@ -59,7 +59,7 @@ QIcon CreateOfficialIcon() { } QIcon CreateIcon() { - auto result = CreateOfficialIcon(); + auto result = CreateUnofficialIcon(); if (cPlatform() == dbipLinux32 || cPlatform() == dbipLinux64) { return QIcon::fromTheme("telegram", result); }