From c6f71be91f02db4aa62d9f3993c0bb87250a7153 Mon Sep 17 00:00:00 2001 From: kvazar Date: Fri, 29 Mar 2024 05:13:22 +0200 Subject: [PATCH] add branch info --- src/init.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 62e5b6f60..b8f3e39fe 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -527,10 +527,13 @@ std::string HelpMessage(HelpMessageMode mode) std::string LicenseInfo() { + const std::string URL_KVAZAR_CODE = ""; const std::string URL_SOURCE_CODE = ""; const std::string URL_WEBSITE = ""; - return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2011, COPYRIGHT_YEAR) + " ") + "\n" + + return _("Copyright (C) 2024 The kvazar-network developers") + + "\n" + + CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2011, COPYRIGHT_YEAR) + " ") + "\n" + "\n" + strprintf(_("Please contribute if you find %s useful. " "Visit %s for further information about the software."), @@ -538,6 +541,8 @@ std::string LicenseInfo() "\n" + strprintf(_("The source code is available from %s."), URL_SOURCE_CODE) + + strprintf(_("Wallet version by %s."), + URL_KVAZAR_CODE) + "\n" + "\n" + _("This is experimental software.") + "\n" +