Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/serverdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ void CServerDlg::UpdateGUIDependencies()

if ( pServer->IsDirectoryServer() )
{
strStatus = tr ( "Now a directory server" );
strStatus = tr ( "Now a directory" );
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/serverlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ void CServerListManager::SetIsDirectoryServer()

if ( bIsDirectoryServer )
{
qInfo() << "Now a directory server";
qInfo() << "Now a directory";
// Load any persistent server list (create it if it is not there)
(void) Load();
}
Expand Down
2 changes: 1 addition & 1 deletion src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ inline QString svrRegStatusToString ( ESvrRegStatus eSvrRegStatus )
return QCoreApplication::translate ( "CServerDlg", "Registered" );

case SRS_SERVER_LIST_FULL:
return QCoreApplication::translate ( "CServerDlg", "Directory Server full" );
return QCoreApplication::translate ( "CServerDlg", "Directory server list full" );
Comment thread
ann0see marked this conversation as resolved.

case SRS_VERSION_TOO_OLD:
return QCoreApplication::translate ( "CServerDlg", "Your server version is too old" );
Expand Down