mirror of
https://github.com/Ylianst/MeshCentralRouter
synced 2025-12-10 05:13:39 +00:00
More internalization work.
This commit is contained in:
@@ -138,9 +138,9 @@ namespace MeshCentralRouter
|
||||
else if (state == 1) {
|
||||
if (remoteip == null)
|
||||
{
|
||||
msg = "Port " + localport + " to port " + remoteport;
|
||||
msg = string.Format(Translate.T(Properties.Resources.PortXtoPortY), localport, remoteport);
|
||||
} else {
|
||||
msg = "Port " + localport + " to " + remoteip + ":" + remoteport;
|
||||
msg = string.Format(Translate.T(Properties.Resources.PortXtoIPPortY), localport, remoteip, remoteport);
|
||||
}
|
||||
if (totalConnectCounter == 1) { msg += Translate.T(Properties.Resources.OneConnection); }
|
||||
if (totalConnectCounter > 1) { msg += string.Format(Translate.T(Properties.Resources.ManyConnections), totalConnectCounter); }
|
||||
|
||||
Reference in New Issue
Block a user