forked from aniani/vim
patch 9.0.1586: error for using two messages with ngettext() differing in "%"
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.
This commit is contained in:
@@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
if 1 " Only execute this if the eval feature is available.
|
if 1 " Only execute this if the eval feature is available.
|
||||||
|
|
||||||
|
" using line continuation
|
||||||
|
set cpo&vim
|
||||||
|
|
||||||
" Function to get a split line at the cursor.
|
" Function to get a split line at the cursor.
|
||||||
" Used for both msgid and msgstr lines.
|
" Used for both msgid and msgstr lines.
|
||||||
" Removes all text except % items and returns the result.
|
" Removes all text except % items and returns the result.
|
||||||
@@ -59,12 +62,18 @@ while 1
|
|||||||
if getline(line('.') - 1) !~ "no-c-format"
|
if getline(line('.') - 1) !~ "no-c-format"
|
||||||
" go over the "msgid" and "msgid_plural" lines
|
" go over the "msgid" and "msgid_plural" lines
|
||||||
let prevfromline = 'foobar'
|
let prevfromline = 'foobar'
|
||||||
|
let plural = 0
|
||||||
while 1
|
while 1
|
||||||
|
if getline('.') =~ 'msgid_plural'
|
||||||
|
let plural += 1
|
||||||
|
endif
|
||||||
let fromline = GetMline()
|
let fromline = GetMline()
|
||||||
if prevfromline != 'foobar' && prevfromline != fromline
|
if prevfromline != 'foobar' && prevfromline != fromline
|
||||||
|
\ && (plural != 1
|
||||||
|
\ || count(prevfromline, '%') + 1 != count(fromline, '%'))
|
||||||
echomsg 'Mismatching % in line ' . (line('.') - 1)
|
echomsg 'Mismatching % in line ' . (line('.') - 1)
|
||||||
echomsg 'msgid: ' . prevfromline
|
echomsg 'msgid: ' . prevfromline
|
||||||
echomsg 'msgid ' . fromline
|
echomsg 'msgid: ' . fromline
|
||||||
if error == 0
|
if error == 0
|
||||||
let error = line('.')
|
let error = line('.')
|
||||||
endif
|
endif
|
||||||
@@ -86,6 +95,7 @@ while 1
|
|||||||
while getline('.') =~ '^msgstr'
|
while getline('.') =~ '^msgstr'
|
||||||
let toline = GetMline()
|
let toline = GetMline()
|
||||||
if fromline != toline
|
if fromline != toline
|
||||||
|
\ && (plural == 0 || count(fromline, '%') != count(toline, '%') + 1)
|
||||||
echomsg 'Mismatching % in line ' . (line('.') - 1)
|
echomsg 'Mismatching % in line ' . (line('.') - 1)
|
||||||
echomsg 'msgid: ' . fromline
|
echomsg 'msgid: ' . fromline
|
||||||
echomsg 'msgstr: ' . toline
|
echomsg 'msgstr: ' . toline
|
||||||
|
|||||||
@@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1586,
|
||||||
/**/
|
/**/
|
||||||
1585,
|
1585,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user