Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add privacy policy #1314

Merged
merged 2 commits into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading