From 265e2657b4d1fa1551787f17c35a35301c32a0e0 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 6 Aug 2013 10:28:52 +0200 Subject: remove a newline from a string in init.cpp - to match all other translatable strings in init.cpp and to simplify translations via Transifex --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index 49d6e1fde4..20d334019d 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -504,7 +504,7 @@ bool AppInit2(boost::thread_group& threadGroup) // Wallet file must be a plain filename without a directory if (strWalletFile != boost::filesystem::basename(strWalletFile) + boost::filesystem::extension(strWalletFile)) - return InitError(strprintf(_("Wallet %s resides outside data directory %s\n"), strWalletFile.c_str(), strDataDir.c_str())); + return InitError(strprintf(_("Wallet %s resides outside data directory %s"), strWalletFile.c_str(), strDataDir.c_str())); // Make sure only a single Bitcoin process is using the data directory. boost::filesystem::path pathLockFile = GetDataDir() / ".lock"; -- cgit v1.2.3