# HG changeset patch # User Andre Heinecke # Date 1430919047 -7200 # Node ID 749ecdfd036a50c694e04995301b4eb5fe5afadd # Parent c09d38033fde5d15094497ae0541aef6043396f3 Store ini file in relayit folder (using organization name) diff -r c09d38033fde -r 749ecdfd036a src/constants.h --- a/src/constants.h Wed May 06 15:06:50 2015 +0200 +++ b/src/constants.h Wed May 06 15:30:47 2015 +0200 @@ -23,11 +23,6 @@ #define APPNAME "undefined" #endif -/**@def The user visible organization behind this. */ -#ifndef ORGANIZATION -#define ORGANIZATION "Intevation GmbH" -#endif - /**@def Short command line description. */ #define DESCRIPTION "A tool to replay recorded user sessions." diff -r c09d38033fde -r 749ecdfd036a src/l10n/main_de_DE.ts --- a/src/l10n/main_de_DE.ts Wed May 06 15:06:50 2015 +0200 +++ b/src/l10n/main_de_DE.ts Wed May 06 15:30:47 2015 +0200 @@ -40,52 +40,52 @@ MainWindow - + Player Player - + Filter/Details Filter/Details - + Error! Fehler! - + Failed to access directory: '%1' Auf das Verzeichnis '%1' konnte nicht zugegriffen werden. - + Failed to access meta data file: '%1' Auf die Metadaten-Datei: '%1' konnte nicht zugegriffen werden. - + Parsed: '%1' '%1' eingelesen - + Showing: '%1' Zeige: '%1' - + Persons Personen - + Exams Prüfungen - + Root-Path Wurzelverzeichnis @@ -93,7 +93,7 @@ MetaDataView - + Failed to parse file: '%1' Die Datei '%1' konnte nicht eingelesen werden. @@ -134,9 +134,13 @@ main + The folder containing the data to relay. + Der Ordner mit den Relaydaten + + The folder containing the data to replay. - Der Ordner mit den Replaydaten + diff -r c09d38033fde -r 749ecdfd036a src/main.cpp --- a/src/main.cpp Wed May 06 15:06:50 2015 +0200 +++ b/src/main.cpp Wed May 06 15:30:47 2015 +0200 @@ -105,7 +105,7 @@ /* QApplication setup */ QApplication app (argc, argv); QApplication::setQuitOnLastWindowClosed(true); - QApplication::setOrganizationName(QString::fromLatin1(ORGANIZATION)); + QApplication::setOrganizationName(QString::fromLatin1(APPNAME)); QApplication::setApplicationName(QString::fromLatin1(APPNAME)); QApplication::setApplicationVersion(QString::fromLatin1(VERSION)); QSettings::setDefaultFormat(QSettings::IniFormat);