summaryrefslogtreecommitdiffstats
path: root/kgoldrunner
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-07 19:08:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-07 19:08:59 -0600
commitb7eeece6d125e218217ea12a2a6ac71cdbe053e2 (patch)
treee0969cc780d01278f866c5d7fe270fac3da03330 /kgoldrunner
parent482d9c8394cea8caa93076633c6fa68fca6f69b5 (diff)
downloadtdegames-b7eeece6d125e218217ea12a2a6ac71cdbe053e2.tar.gz
tdegames-b7eeece6d125e218217ea12a2a6ac71cdbe053e2.zip
Rename KDEHOME and KDEDIR
Diffstat (limited to 'kgoldrunner')
-rw-r--r--kgoldrunner/src/data_messages.cpp2
-rw-r--r--kgoldrunner/src/kgoldrunner.cpp14
2 files changed, 8 insertions, 8 deletions
diff --git a/kgoldrunner/src/data_messages.cpp b/kgoldrunner/src/data_messages.cpp
index 838db2a8..465c9a2f 100644
--- a/kgoldrunner/src/data_messages.cpp
+++ b/kgoldrunner/src/data_messages.cpp
@@ -11,7 +11,7 @@ dont_call_me() {
i18n("TRANSLATORS: Please see the notes in the data_messages.cpp file.");
// NOTES: Strings in this file originate from KGoldrunner DATA files,
-// as installed in $KDEDIR/share/apps/kgoldrunner/system. They are
+// as installed in $TDEDIR/share/apps/kgoldrunner/system. They are
// names and descriptions of games and names and hints for levels. The
// C++ comments indicate which data file the strings came from. You
// may sometimes need to look at the corresponding game or level graphics
diff --git a/kgoldrunner/src/kgoldrunner.cpp b/kgoldrunner/src/kgoldrunner.cpp
index 9f66123d..da4c73b3 100644
--- a/kgoldrunner/src/kgoldrunner.cpp
+++ b/kgoldrunner/src/kgoldrunner.cpp
@@ -823,14 +823,14 @@ bool KGoldrunner::getDirectories()
// WHERE THINGS ARE: In the KDE 3 environment (Release 3.1.1), application
// documentation and data files are in a directory structure given by
- // $KDEDIRS (e.g. "/usr/local/kde" or "/opt/trinity/"). Application user data
- // files are in a directory structure given by $KDEHOME ("$HOME/.kde").
+ // $TDEDIRS (e.g. "/usr/local/kde" or "/opt/trinity/"). Application user data
+ // files are in a directory structure given by $TDEHOME ("$HOME/.kde").
// Within those two structures, the three sub-directories will typically be
// "share/doc/HTML/en/kgoldrunner/", "share/apps/kgoldrunner/system/" and
// "share/apps/kgoldrunner/user/". Note that it is necessary to have
// an extra path level ("system" or "user") after "kgoldrunner", otherwise
// all the KGoldrunner files have similar path names (after "apps") and
- // KDE always locates directories in $KDEHOME and never the released games.
+ // KDE always locates directories in $TDEHOME and never the released games.
// The directory strings are set by KDE at run time and might change in
// later releases, so use them with caution and only if something gets lost.
@@ -848,7 +848,7 @@ bool KGoldrunner::getDirectories()
if (systemHTMLDir.length() <= 0) {
KGrMessage::information (this, i18n("Get Folders"),
i18n("Cannot find documentation sub-folder 'en/%1/' "
- "in area '%2' of the KDE folder ($KDEDIRS).")
+ "in area '%2' of the KDE folder ($TDEDIRS).")
.tqarg(myDir).tqarg(dirs->kde_default ("html")));
// result = FALSE; // Don't abort if the doc is missing.
}
@@ -860,7 +860,7 @@ bool KGoldrunner::getDirectories()
if (systemDataDir.length() <= 0) {
KGrMessage::information (this, i18n("Get Folders"),
i18n("Cannot find system games sub-folder '%1/system/' "
- "in area '%2' of the KDE folder ($KDEDIRS).")
+ "in area '%2' of the KDE folder ($TDEDIRS).")
.tqarg(myDir).tqarg(dirs->kde_default ("data")));
result = FALSE; // ABORT if the games data is missing.
}
@@ -873,7 +873,7 @@ bool KGoldrunner::getDirectories()
if (userDataDir.length() <= 0) {
KGrMessage::information (this, i18n("Get Folders"),
i18n("Cannot find or create user games sub-folder '%1/user/' "
- "in area '%2' of the KDE user area ($KDEHOME).")
+ "in area '%2' of the KDE user area ($TDEHOME).")
.tqarg(myDir).tqarg(dirs->kde_default ("data")));
// result = FALSE; // Don't abort if user area is missing.
}
@@ -882,7 +882,7 @@ bool KGoldrunner::getDirectories()
if (! create) {
KGrMessage::information (this, i18n("Get Folders"),
i18n("Cannot find or create 'levels/' folder in "
- "sub-folder '%1/user/' in the KDE user area ($KDEHOME).").tqarg(myDir));
+ "sub-folder '%1/user/' in the KDE user area ($TDEHOME).").tqarg(myDir));
// result = FALSE; // Don't abort if user area is missing.
}
}