summaryrefslogtreecommitdiff
path: root/src/gui_w32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index e612505da..cba317965 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -4965,7 +4965,7 @@ gui_mch_set_parent(char *title)
EnumWindows(FindWindowTitle, (LPARAM)title);
if (vim_parent_hwnd == NULL)
{
- semsg(_("E671: Cannot find window title \"%s\""), title);
+ semsg(_(e_cannot_find_window_title_str), title);
mch_exit(2);
}
}
@@ -5303,7 +5303,7 @@ gui_mch_init(void)
#endif
if (s_hwnd == NULL)
{
- emsg(_("E672: Unable to open window inside MDI application"));
+ emsg(_(e_unable_to_open_window_inside_mdi_application));
mch_exit(2);
}
}