aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/tunnelspage.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tunnelspage.go')
-rw-r--r--ui/tunnelspage.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go
index a74b6210..8650ece6 100644
--- a/ui/tunnelspage.go
+++ b/ui/tunnelspage.go
@@ -216,7 +216,7 @@ func (tp *TunnelsPage) importFiles(paths []string) {
configCount := 0
for _, unparsedConfig := range unparsedConfigs {
if existingLowerTunnels[strings.ToLower(unparsedConfig.Name)] {
- lastErr = fmt.Errorf("The tunnel \"%s\" already exists", unparsedConfig.Name)
+ lastErr = fmt.Errorf("Another tunnel already exists with the name ā€˜%sā€™", unparsedConfig.Name)
continue
}
config, err := conf.FromWgQuick(unparsedConfig.Config, unparsedConfig.Name)