diff --git a/localization/rssguard_cs.ts b/localization/rssguard_cs.ts index 5ddda249f..49d1ecb7b 100644 --- a/localization/rssguard_cs.ts +++ b/localization/rssguard_cs.ts @@ -1,6 +1,72 @@ + + FormMain + + MainWindow + + + + ... + + + + &File + + + + &Help + + + + &View + + + + &Tools + + + + &Import + + + + E&xport + + + + &Quit + + + + &Settings + + + + + FormSettings + + Dialog + + + + General + + + + User interface + + + + Icon theme + + + + system icon theme (default) + + + QObject diff --git a/localization/rssguard_en.ts b/localization/rssguard_en.ts index f171e17a8..188040f57 100644 --- a/localization/rssguard_en.ts +++ b/localization/rssguard_en.ts @@ -1,6 +1,72 @@ + + FormMain + + MainWindow + + + + ... + + + + &File + + + + &Help + + + + &View + + + + &Tools + + + + &Import + + + + E&xport + + + + &Quit + + + + &Settings + + + + + FormSettings + + Dialog + + + + General + + + + User interface + + + + Icon theme + + + + system icon theme (default) + + + QObject diff --git a/resources/desktop/rssguard.desktop.in b/resources/desktop/rssguard.desktop.in index d304c1744..7e1eae237 100644 --- a/resources/desktop/rssguard.desktop.in +++ b/resources/desktop/rssguard.desktop.in @@ -4,10 +4,10 @@ Version=1.0 Encoding=UTF-8 Exec=rssguard Name=RSS Guard -GenericName=Simple (yet powerful) calculator -GenericName[cs]=Jednoduchá (a přesto mocná) kalkulačka -Comment=Simple (yet powerful) calculator with some unusual functions -Comment[cs]=Jednoduchá (a přesto mocná) kalkulačka s neobvyklými funkcemi +GenericName=a (very) tiny feed reader +GenericName[cs]=velmi jednoduchá čtečka kanálů +Comment=a (very) tiny feed reader +Comment[cs]=velmi jednoduchá čtečka kanálů Icon=rssguard Terminal=false Categories=Qt;Office;Network;Utility \ No newline at end of file diff --git a/src/core/defs.h.in b/src/core/defs.h.in index ee708ac69..570027d49 100644 --- a/src/core/defs.h.in +++ b/src/core/defs.h.in @@ -1,6 +1,7 @@ #ifndef DEFS_H #define DEFS_H +#include #define CMAKE_VERSION "@CMAKE_VERSION@" #define CMAKE_SYSTEM "@CMAKE_SYSTEM@" diff --git a/src/gui/themefactory.cpp b/src/gui/themefactory.cpp index 2a16051bc..62b6c04c9 100644 --- a/src/gui/themefactory.cpp +++ b/src/gui/themefactory.cpp @@ -88,7 +88,7 @@ void ThemeFactory::loadCurrentIconTheme() { return; } else { - qDebug("Loading theme '%s'.", qPrintable(theme_name)); + qDebug("Loading theme %s.", qPrintable(theme_name)); QIcon::setThemeName(theme_name); // In Linux, we need to deliver custom event for all widgets diff --git a/src/main.cpp b/src/main.cpp index b51b8cf0c..4c48f87f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -63,11 +63,11 @@ int main(int argc, char *argv[]) { QtSingleApplication::setApplicationVersion(APP_VERSION); QtSingleApplication::setOrganizationName(APP_AUTHORS); QtSingleApplication::setOrganizationDomain(APP_URL); - QtSingleApplication::setWindowIcon(QIcon(":/graphics/qonverter.png")); + QtSingleApplication::setWindowIcon(QIcon(APP_INFO_PATH)); + qDebug("%s", qPrintable(APP_ICON_PATH)); - // Instantiate main application window. + // Instantiate main application window and show it. FormMain window; - window.show(); if (Settings::getInstance().value(APP_CFG_GEN, "first_start", true).toBool()) {