aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-11-12 14:01:47 +0100
committerSimon Rozman <simon@rozman.si>2019-11-12 14:30:19 +0100
commit81ef3b070db81eeb99a0527b39ebb3628b6fb42b (patch)
treec2b6f330d29beefe0e20eeda35115feccb023809 /ui
parentembeddable-dll-service: acquire pointer reference before atomic increment (diff)
downloadwireguard-windows-81ef3b070db81eeb99a0527b39ebb3628b6fb42b.tar.xz
wireguard-windows-81ef3b070db81eeb99a0527b39ebb3628b6fb42b.zip
ui: remove trailing … from file dialog titles
This is Microsoft Windows general convention. Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'ui')
-rw-r--r--ui/logpage.go2
-rw-r--r--ui/tunnelspage.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/ui/logpage.go b/ui/logpage.go
index 561cf819..b8febcbb 100644
--- a/ui/logpage.go
+++ b/ui/logpage.go
@@ -148,7 +148,7 @@ func (lp *LogPage) onSave() {
fd := walk.FileDialog{
Filter: "Text Files (*.txt)|*.txt|All Files (*.*)|*.*",
FilePath: fmt.Sprintf("wireguard-log-%s.txt", time.Now().Format("2006-01-02T150405")),
- Title: "Export log to file…",
+ Title: "Export log to file",
}
form := lp.Form()
diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go
index 5da65770..aed8d157 100644
--- a/ui/tunnelspage.go
+++ b/ui/tunnelspage.go
@@ -531,7 +531,7 @@ func (tp *TunnelsPage) onSelectAll() {
func (tp *TunnelsPage) onImport() {
dlg := walk.FileDialog{
Filter: "Configuration Files (*.zip, *.conf)|*.zip;*.conf|All Files (*.*)|*.*",
- Title: "Import tunnel(s) from file…",
+ Title: "Import tunnel(s) from file",
}
if ok, _ := dlg.ShowOpenMultiple(tp.Form()); !ok {
@@ -544,7 +544,7 @@ func (tp *TunnelsPage) onImport() {
func (tp *TunnelsPage) onExportTunnels() {
dlg := walk.FileDialog{
Filter: "Configuration ZIP Files (*.zip)|*.zip",
- Title: "Export tunnels to zip…",
+ Title: "Export tunnels to zip",
}
if ok, _ := dlg.ShowSave(tp.Form()); !ok {