aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-05-29 22:14:01 +0800
committerGitHub <noreply@github.com>2023-05-29 22:14:01 +0800
commit2028d1e2bc9fbba66552610b141df962cc550f88 (patch)
treeba595bc648aecd53df70a57d27f6363b83af263b
parentb8a2220f5eb32ead6b66f7c49b7e915883bf3539 (diff)
downloadrneovim-2028d1e2bc9fbba66552610b141df962cc550f88.tar.gz
rneovim-2028d1e2bc9fbba66552610b141df962cc550f88.tar.bz2
rneovim-2028d1e2bc9fbba66552610b141df962cc550f88.zip
vim-patch:9.0.1586: error for using two messages with ngettext() differing in "%" (#23816)
Problem: Checking translations gives an error for using two messages with ngettext() that differ in "%" items. Solution: Adjust the check script to tolerate omitting one "%" item. https://github.com/vim/vim/commit/78ee62563ea940086f094150f0356e38f780c580 Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r--src/nvim/po/check.vim12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/nvim/po/check.vim b/src/nvim/po/check.vim
index 7705ba8577..8752af663b 100644
--- a/src/nvim/po/check.vim
+++ b/src/nvim/po/check.vim
@@ -6,6 +6,9 @@
if 1 " Only execute this if the eval feature is available.
+" using line continuation
+set cpo&vim
+
let filename = "check-" . expand("%:t:r") . ".log"
exe 'redir! > ' . filename
@@ -62,12 +65,18 @@ while 1
if getline(line('.') - 1) !~ "no-c-format"
" go over the "msgid" and "msgid_plural" lines
let prevfromline = 'foobar'
+ let plural = 0
while 1
+ if getline('.') =~ 'msgid_plural'
+ let plural += 1
+ endif
let fromline = GetMline()
if prevfromline != 'foobar' && prevfromline != fromline
+ \ && (plural != 1
+ \ || count(prevfromline, '%') + 1 != count(fromline, '%'))
echomsg 'Mismatching % in line ' . (line('.') - 1)
echomsg 'msgid: ' . prevfromline
- echomsg 'msgid ' . fromline
+ echomsg 'msgid: ' . fromline
if error == 0
let error = line('.')
endif
@@ -89,6 +98,7 @@ while 1
while getline('.') =~ '^msgstr'
let toline = GetMline()
if fromline != toline
+ \ && (plural == 0 || count(fromline, '%') != count(toline, '%') + 1)
echomsg 'Mismatching % in line ' . (line('.') - 1)
echomsg 'msgid: ' . fromline
echomsg 'msgstr: ' . toline