#ifndef STRINGS_H #define STRINGS_H #include #include class Strings: public QObject { Q_OBJECT public: static const char* s_build; static const char* s_author; static const char* s_appTitle; static const char* s_error; public: static QString errorTitle() { return tr(s_appTitle) + " - " + tr(s_error); } }; #endif