Skip to content

Commit

Permalink
Merge pull request #1314 from kiwix/add-privacy-policy
Browse files Browse the repository at this point in the history
Add privacy policy
  • Loading branch information
kelson42 authored Jan 5, 2025
2 parents df4e3fb + 454aa5d commit a75f41e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
1 change: 1 addition & 0 deletions resources/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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}}",
Expand Down
18 changes: 10 additions & 8 deletions resources/texts/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -13,15 +15,15 @@ <h2>{{REPORTING_PROBLEM}}</h2>
<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>
1 change: 1 addition & 0 deletions src/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down

0 comments on commit a75f41e

Please sign in to comment.