diff --git a/resources/i18n/en.json b/resources/i18n/en.json index 9a4fe05..bbd5b9f 100644 --- a/resources/i18n/en.json +++ b/resources/i18n/en.json @@ -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 Github.", "about-version":"Version: {{VERSION}}", diff --git a/resources/texts/about.html b/resources/texts/about.html index bb76a94..3d71424 100644 --- a/resources/texts/about.html +++ b/resources/texts/about.html @@ -5,6 +5,8 @@

{{KIWIX_DESKTOP_TITLE}}

{{KIWIX_DESKTOP_DESCRIPTION}}

{{LEARN_MORE_ABOUT_KIWIX}}

+

{{PRIVACY_POLICY}}

+

https://kiwix.org/privacy-policy/

{{RELEASE}}

{{SOURCE_CODE}}

{{VERSION_TXT}}

diff --git a/src/about.cpp b/src/about.cpp index e2e6001..0bee73f 100644 --- a/src/about.cpp +++ b/src/about.cpp @@ -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"));