aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index e9f00e6..d255601 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,5 +1,5 @@
/*
- AleePlayer: Music player in Qt
+ Alee Audio Player: Audio player in Qt
Copyright (C) 2020 Alee Productions
This program is free software: you can redistribute it and/or modify
@@ -26,7 +26,7 @@
int main(int argc, char *argv[])
{
- qInfo() << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0.\n";
+ qInfo() << "Alee Audio Player: A music player by Alee Productions. Licensed with GPL-3.0.\n";
qDebug() << "Creating files...";
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
QTranslator translator;
- translator.load(QLocale(), "/home/andrew/Documents/GitHub/AleePlayer/translations/");
+ translator.load(QLocale(), "/home/andrew/Documents/GitHub/Alee Audio Player/translations/");
a.installTranslator(&translator);
Player musicPlayer;