From 65b34868dac4bdc99e1144e36d5315b569795fc4 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 10 May 2023 14:47:50 +0100 Subject: patch 9.0.1537: message for opening the cmdline window is not translated Problem: Message for opening the cmdline window is not translated. Solution: Add gettext() and scan the defaults script for text to be translated. (closes #12371) --- runtime/defaults.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/defaults.vim b/runtime/defaults.vim index f1d5cd1ed..f449c6e1e 100644 --- a/runtime/defaults.vim +++ b/runtime/defaults.vim @@ -120,7 +120,7 @@ if 1 au! autocmd CmdwinEnter * \ echohl Todo | - \ echo 'You discovered the command-line window! You can close it with ":q".' | + \ echo gettext('You discovered the command-line window! You can close it with ":q".') | \ echohl None augroup END -- cgit v1.2.1