diff --git a/README.md b/README.md index 67f3cac1..16c80a05 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ Download on Flathub -Kiwix Desktop -============= +Kiwix Linux/Windows +===================== -The Kiwix Desktop is a viewer/manager of ZIM files for GNU/Linux and -Microsoft Windows OSes. +The Kiwix Linux/Windows is a viewer/manager of ZIM files for GNU/Linux +and Microsoft Windows OSes. [![Release](https://img.shields.io/github/v/tag/kiwix/kiwix-desktop?label=release&sort=semver)](https://download.kiwix.org/release/kiwix-desktop/) [![Repositories](https://img.shields.io/repology/repositories/kiwix-desktop?label=repositories)](https://github.com/kiwix/kiwix-desktop/wiki/Repology) @@ -25,7 +25,7 @@ at [kiwix-build](https://github.com/kiwix/kiwix-build). Dependencies ------------ -The Kiwix Desktop application relies on many third party software libraries. +The Kiwix application relies on many third party software libraries. The following libraries need to be available: * [libkiwix](https://github.com/kiwix/libkiwix/) @@ -53,7 +53,7 @@ sudo apt-get install libqt5gui5 qtbase5-dev qtwebengine5-dev \ Compilation ----------- -Once all dependencies are installed, you can compile Kiwix Desktop: +Once all dependencies are installed, you can compile Kiwix: ```bash qmake . @@ -69,7 +69,7 @@ for example, for x86-64 native systems: export PKG_CONFIG_PATH="<...>/BUILD_native_dyn/INSTALL/lib/x86_64-linux-gnu/pkgconfig" ``` -You may want to simply open the kiwix-desktop project in QtCreator and +You may want to simply open the `kiwix-desktop` project in QtCreator and then compile the project from there (don't forget to update `PKG_CONFIG_PATH` if necessary). @@ -114,7 +114,7 @@ documentation](https://github.com/kiwix/kiwix-build/wiki/Compile-on-Microsoft-Wi Installation ------------ -To install Kiwix Desktop on the system: +To install Kiwix on the system: ```bash sudo make install ``` @@ -122,9 +122,9 @@ sudo make install Run --- -To run Kiwix Desktop +To run Kiwix: ```bash -kiwix-desktop +kiwix ``` You might have to refresh the `ld` database before: diff --git a/kiwix-desktop.pro b/kiwix-desktop.pro index c1f4f93e..acfc1731 100644 --- a/kiwix-desktop.pro +++ b/kiwix-desktop.pro @@ -20,7 +20,7 @@ CONFIG += link_pkgconfig greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = kiwix-desktop +TARGET = kiwix TEMPLATE = app QMAKE_CXXFLAGS += -std=c++17 diff --git a/resources/i18n/en.json b/resources/i18n/en.json index 9a4fe05e..1d73aa9f 100644 --- a/resources/i18n/en.json +++ b/resources/i18n/en.json @@ -6,7 +6,7 @@ "name":"English", "error-title":"Error", "error-downloader-window-title":"Cannot create downloader", - "error-downloader-launch-message":"Impossible to launch downloader, Kiwix-desktop will start but all download functions will not working!", + "error-downloader-launch-message":"Impossible to launch downloader, Kiwix will start but all download functions will not working!", "error-launch-server-message":"An error has occured!", "error-archive":"Cannot get the archive", "error-opening-file": "There was an error opening the file.", @@ -78,14 +78,14 @@ "reset":"Reset", "clear":"Clear", "browse":"Browse", - "about-kiwix-desktop-title":"Kiwix Desktop", + "about-kiwix-desktop-title":"Kiwix", "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-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}}", "about-reporting-problem-title":"Reporting problems", - "about-report-issue":"To open an issue, visit Kiwix-desktop issue tracker and open an issue describing your problem.", + "about-report-issue":"To open an issue, visit Kiwix issue tracker and open an issue describing your problem.", "about-report-issue-2":"Please mention the version in the issue.", "about-libraries-title":"Libraries", "kiwix-server-running-message":"The Kiwix Server is running and can be accessed in the local network at:", diff --git a/resources/org.kiwix.desktop.desktop b/resources/org.kiwix.desktop.desktop index c636da3f..951810a7 100644 --- a/resources/org.kiwix.desktop.desktop +++ b/resources/org.kiwix.desktop.desktop @@ -3,7 +3,7 @@ Type=Application Name=Kiwix Comment=View offline content Icon=kiwix-desktop -Exec=kiwix-desktop %F +Exec=kiwix %F Terminal=false MimeType=application/org.kiwix.desktop.x-zim; Keywords=zim; diff --git a/src/main.cpp b/src/main.cpp index 13a9a3ee..47ed554c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -55,7 +55,7 @@ int main(int argc, char *argv[]) KiwixApp a(argc, argv); QCommandLineParser parser; - parser.setApplicationDescription(QStringLiteral("The Kiwix Desktop is a viewer/manager of ZIM files for GNU/Linux and Microsoft Windows OSes.")); + parser.setApplicationDescription(QStringLiteral("Kiwix is a viewer/manager of ZIM files for GNU/Linux and Microsoft Windows OSes.")); parser.addHelpOption(); parser.addPositionalArgument("zimfile", "The zim file");