diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/binlang | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/binlang b/tools/binlang index 15de9dbabf..64e9a8576a 100755 --- a/tools/binlang +++ b/tools/binlang @@ -97,6 +97,12 @@ while(<LANG>) { if($value =~ s/^\"(.*)\"\s*$/$1/g) { + # Skip voice-only entries + if(!$value && $set{'voice'}) { + $idnum{$set{'id'}} = '_done_'; + next; + } + $idnum = $idnum{$set{'id'}}; if($idnum eq "") { |