diff options
author | 2018-03-03 19:02:33 +0300 | |
---|---|---|
committer | 2018-03-03 19:02:33 +0300 | |
commit | e5b5d70452605b01145d6de5570eecd3ca1e7ef6 (patch) | |
tree | 3e7ae1c31440681b94ab50df4a8fc0862d926bd9 /src/controller.cpp | |
parent | dc34d232882c7d31999c4a7e29f5c1722babd1b4 (diff) | |
download | newsboat-e5b5d70452605b01145d6de5570eecd3ca1e7ef6.tar.gz newsboat-e5b5d70452605b01145d6de5570eecd3ca1e7ef6.tar.zst newsboat-e5b5d70452605b01145d6de5570eecd3ca1e7ef6.zip |
Credit json.hpp in -v output
Diffstat (limited to '')
-rw-r--r-- | src/controller.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/controller.cpp b/src/controller.cpp index 5c039232..8d12f545 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -1160,8 +1160,11 @@ void controller::print_version_information(const char * argv0, unsigned int leve std::cout << "Copyright (C) 2017-2018 Newsboat contributors" << std::endl; std::cout << std::endl; - std::cout << _("newsboat is free software and licensed under the MIT License.") << std::endl; - std::cout << strprintf::fmt(_("Type `%s -vv' for more information."), argv0) << std::endl << std::endl; + std::cout << strprintf::fmt( + _("Newsboat is free software licensed under the MIT License. (Type `%s -vv' to see the full text.)"), + argv0) << std::endl; + std::cout << _("It bundles JSON for Modern C++ library, licensed under the MIT License: https://github.com/nlohmann/json") << std::endl; + std::cout << std::endl; struct utsname xuts; uname(&xuts); |