| 90 | } |
| 91 | |
| 92 | std::string LicenseInfo() |
| 93 | { |
| 94 | const std::string URL_SOURCE_CODE = "<https://github.com/ElementsProject/elements>"; |
| 95 | |
| 96 | return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2009, COPYRIGHT_YEAR) + " ") + "\n" + |
| 97 | "\n" + |
| 98 | strprintf(_("Please contribute if you find %s useful. " |
| 99 | "Visit %s for further information about the software.").translated, PACKAGE_NAME, "<" PACKAGE_URL ">") + |
| 100 | "\n" + |
| 101 | strprintf(_("The source code is available from %s.").translated, URL_SOURCE_CODE) + |
| 102 | "\n" + |
| 103 | "\n" + |
| 104 | _("This is experimental software.").translated + "\n" + |
| 105 | strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s").translated, "COPYING", "<https://opensource.org/licenses/MIT>") + |
| 106 | "\n"; |
| 107 | } |
no test coverage detected