@@ -321,7 +321,7 @@ bilingual_str CCoinJoinClientSession::GetStatus(bool fWaitForBlock) const
321321 return strAutoDenomResult;
322322 case POOL_STATE_SIGNING:
323323 if (nStatusMessageProgress % 70 <= 40 )
324- return _ (" Found enough users, signing ... " );
324+ return _ (" Found enough users, signing… " );
325325 else if (nStatusMessageProgress % 70 <= 50 )
326326 strSuffix = " ." ;
327327 else if (nStatusMessageProgress % 70 <= 60 )
@@ -330,7 +330,7 @@ bilingual_str CCoinJoinClientSession::GetStatus(bool fWaitForBlock) const
330330 strSuffix = " ..." ;
331331 return strprintf (_ (" Found enough users, signing ( waiting %s )" ), strSuffix);
332332 case POOL_STATE_ERROR:
333- return strprintf (_ (" %s request incomplete:" ), gCoinJoinName ) + strLastMessage + Untranslated (" " ) + _ (" Will retry... " );
333+ return strprintf (_ (" %s request incomplete:" ), gCoinJoinName ) + strLastMessage + Untranslated (" " ) + _ (" Will retry… " );
334334 default :
335335 return strprintf (_ (" Unknown state: id = %u" ), nState);
336336 }
@@ -807,7 +807,7 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(CChainState& active_chainst
807807 }
808808
809809 if (GetEntriesCount () > 0 ) {
810- strAutoDenomResult = _ (" Mixing in progress... " );
810+ strAutoDenomResult = _ (" Mixing in progress… " );
811811 return false ;
812812 }
813813
@@ -912,7 +912,7 @@ bool CCoinJoinClientSession::DoAutomaticDenominating(CChainState& active_chainst
912912 }
913913
914914 if (nSessionID) {
915- strAutoDenomResult = _ (" Mixing in progress... " );
915+ strAutoDenomResult = _ (" Mixing in progress… " );
916916 return false ;
917917 }
918918
@@ -1115,7 +1115,7 @@ bool CCoinJoinClientSession::JoinExistingQueue(CAmount nBalanceNeedsAnonymized,
11151115 nTimeLastSuccessfulStep = GetTime ();
11161116 WalletCJLogPrint (m_wallet, " CCoinJoinClientSession::JoinExistingQueue -- pending connection (from queue): nSessionDenom: %d (%s), addr=%s\n " ,
11171117 nSessionDenom, CoinJoin::DenominationToString (nSessionDenom), dmn->pdmnState ->addr .ToString ());
1118- strAutoDenomResult = _ (" Trying to connect... " );
1118+ strAutoDenomResult = _ (" Trying to connect… " );
11191119 return true ;
11201120 }
11211121 strAutoDenomResult = _ (" Failed to find mixing queue to join" );
@@ -1196,7 +1196,7 @@ bool CCoinJoinClientSession::StartNewQueue(CAmount nBalanceNeedsAnonymized, CCon
11961196 nTimeLastSuccessfulStep = GetTime ();
11971197 WalletCJLogPrint (m_wallet, " CCoinJoinClientSession::StartNewQueue -- pending connection, nSessionDenom: %d (%s), addr=%s\n " ,
11981198 nSessionDenom, CoinJoin::DenominationToString (nSessionDenom), dmn->pdmnState ->addr .ToString ());
1199- strAutoDenomResult = _ (" Trying to connect... " );
1199+ strAutoDenomResult = _ (" Trying to connect… " );
12001200 return true ;
12011201 }
12021202 strAutoDenomResult = _ (" Failed to start a new mixing queue" );
@@ -1231,7 +1231,7 @@ void CCoinJoinClientManager::ProcessPendingDsaRequest(CConnman& connman)
12311231 LOCK (cs_deqsessions);
12321232 for (auto & session : deqSessions) {
12331233 if (session.ProcessPendingDsaRequest (connman)) {
1234- strAutoDenomResult = _ (" Mixing in progress... " );
1234+ strAutoDenomResult = _ (" Mixing in progress… " );
12351235 }
12361236 }
12371237}
0 commit comments