Skip to content

Commit 00dcec7

Browse files
committed
Stop translating remaining usages of PACKAGE_NAME
1 parent 03a002a commit 00dcec7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/init.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ static bool LockDataDirectory(bool probeOnly)
11941194
return UIError(strprintf(_("Cannot write to data directory '%s'; check permissions."), datadir.string()));
11951195
}
11961196
if (!LockDirectory(datadir, ".lock", probeOnly)) {
1197-
return UIError(strprintf(_("Cannot obtain a lock on data directory %s. %s is probably already running."), datadir.string(), _(PACKAGE_NAME)));
1197+
return UIError(strprintf(_("Cannot obtain a lock on data directory %s. %s is probably already running."), datadir.string(), PACKAGE_NAME));
11981198
}
11991199
return true;
12001200
}
@@ -1210,7 +1210,7 @@ bool AppInitSanityChecks()
12101210

12111211
// Sanity check
12121212
if (!InitSanityCheck())
1213-
return UIError(strprintf(_("Initialization sanity check failed. %s is shutting down."), _(PACKAGE_NAME)));
1213+
return UIError(strprintf(_("Initialization sanity check failed. %s is shutting down."), PACKAGE_NAME));
12141214

12151215
// Probe the data directory lock to give an early error message, if possible
12161216
return LockDataDirectory(true);

0 commit comments

Comments
 (0)