summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-05-10 14:47:50 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-10 14:47:50 +0100
commit65b34868dac4bdc99e1144e36d5315b569795fc4 (patch)
treece76c54c66c9bdf13492e66f3cba2f2f09901962 /runtime
parent5fc7959dcbc43ddf2e9a2a06c547a5c10804e3d1 (diff)
downloadvim-git-65b34868dac4bdc99e1144e36d5315b569795fc4.tar.gz
patch 9.0.1537: message for opening the cmdline window is not translatedv9.0.1537
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)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/defaults.vim2
1 files changed, 1 insertions, 1 deletions
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