Merge pull request #1314 from kiwix/add-privacy-policy

Add privacy policy
This commit is contained in:
Kelson 2025-01-05 11:38:58 +01:00 committed by GitHub
commit a75f41e8b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 8 deletions

View File

@ -81,6 +81,7 @@
"about-kiwix-desktop-title":"Kiwix Desktop",
"about-kiwix-desktop-description":"Kiwix allows you to have the entirety of Wikipedia at hand wherever you go! On a boat, in the middle of nowhere, or in jail, Kiwix gives you access to all of human knowledge. You don't need Internet, everything is stored on your computer.",
"about-learn-more-about-kiwix":"Learn more about Kiwix",
"about-privacy-policy":"Privacy policy",
"about-release-title":"Release",
"about-source-code":"This software is released under the terms of the GNU General Public License version 3. View the source code on <a href='{{GITHUB_URL}}'>Github</a>.",
"about-version":"Version: {{VERSION}}",

View File

@ -5,6 +5,8 @@
<h1>{{KIWIX_DESKTOP_TITLE}}</h1>
<p>{{KIWIX_DESKTOP_DESCRIPTION}}</p>
<p><a href="https://kiwix.org">{{LEARN_MORE_ABOUT_KIWIX}}</a></p>
<h2>{{PRIVACY_POLICY}}</h2>
<p><a href="https://kiwix.org/privacy-policy/">https://kiwix.org/privacy-policy/</a></p>
<h2>{{RELEASE}}</h2>
<p>{{SOURCE_CODE}}</p>
<p>{{VERSION_TXT}}</p>
@ -13,15 +15,15 @@
<p>{{REPORT_ISSUE_2}}</p>
<h2>{{LIBRARIES}}</h2>
<ul>
<li>Libzim - GPLv2 (<a href="https://openzim.org">openzim.org</a>)</li>
<li>Libzim - GPLv2 (<a href="https://openzim.org">https://openzim.org</a>)</li>
<li>Libkiwix - GPLv3 (<a href="https://github.com/kiwix/libkiwix">https://github.com/kiwix/libkiwix</a>)</li>
<li>Qt - LGPLv3 (<a href="https://qt.io">qt.io</a>)</li>
<li>Xapian - GPL (<a href="https://xapian.org">xapian.org</a>)</li>
<li>Qt - LGPLv3 (<a href="https://qt.io">https://qt.io</a>)</li>
<li>Xapian - GPL (<a href="https://xapian.org">https://xapian.org</a>)</li>
<li>Mustache - Boost (<a href="https://github.com/kainjow/Mustache">https://github.com/kainjow/Mustache</a>)</li>
<li>Pugixml - MIT (<a href="https://pugixml.org">pugixml.org</a>)</li>
<li>ICU - ICU License (<a href="https://icu-project.org">icu-project.org</a>)</li>
<li>Libmicrohttpd - GPL (<a href="https://www.gnu.org/software/libmicrohttpd/">www.gnu.org/software/libmicrohttpd/</a>)</li>
<li>Aria2 - GPL (<a href="https://aria2.github.io">aria2.github.io</a>)</li>
<li>Selawik font - SIL Open Font License (<a href="https://github.com/microsoft/Selawik">github.com/microsoft/Selawik</a>)</li>
<li>Pugixml - MIT (<a href="https://pugixml.org">https://pugixml.org</a>)</li>
<li>ICU - ICU License (<a href="https://icu-project.org">https://icu-project.org</a>)</li>
<li>Libmicrohttpd - GPL (<a href="https://www.gnu.org/software/libmicrohttpd/">https://www.gnu.org/software/libmicrohttpd/</a>)</li>
<li>Aria2 - GPL (<a href="https://aria2.github.io">https://aria2.github.io</a>)</li>
<li>Selawik font - SIL Open Font License (<a href="https://github.com/microsoft/Selawik">https://github.com/microsoft/Selawik</a>)</li>
</ul>
</body></html>

View File

@ -11,6 +11,7 @@ About::About(QWidget *parent) :
htmlText = htmlText.replace("{{KIWIX_DESKTOP_TITLE}}", gt("about-kiwix-desktop-title"));
htmlText = htmlText.replace("{{KIWIX_DESKTOP_DESCRIPTION}}", gt("about-kiwix-desktop-description"));
htmlText = htmlText.replace("{{LEARN_MORE_ABOUT_KIWIX}}", gt("about-learn-more-about-kiwix"));
htmlText = htmlText.replace("{{PRIVACY_POLICY}}", gt("about-privacy-policy"));
htmlText = htmlText.replace("{{RELEASE}}", gt("about-release-title"));
htmlText = htmlText.replace("{{SOURCE_CODE}}", gt("about-source-code"));
htmlText = htmlText.replace("{{VERSION_TXT}}", gt("about-version"));