1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-02-22 04:13:24 +00:00

Added internalization support.

This commit is contained in:
Ylian Saint-Hilaire
2020-06-12 16:26:43 -07:00
parent 4d57656c5b
commit 547fe9ab79
25 changed files with 4156 additions and 834 deletions

View File

@@ -46,7 +46,7 @@ namespace MeshCentralRouter
// Fix the name
if (name == null) { name = this.name; }
if (name == null) { name = "MeshCentral"; }
if (name == null) { name = Properties.Resources.MeshCentralTitle; }
// Don't replace a IPv4 address with a IPv6 one, or remove information
if ((this.url.IndexOf("://[") == -1) && (url.IndexOf("://[") >= 0)) return false;