summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/binlang6
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>) {
97 97
98 if($value =~ s/^\"(.*)\"\s*$/$1/g) { 98 if($value =~ s/^\"(.*)\"\s*$/$1/g) {
99 99
100 # Skip voice-only entries
101 if(!$value && $set{'voice'}) {
102 $idnum{$set{'id'}} = '_done_';
103 next;
104 }
105
100 $idnum = $idnum{$set{'id'}}; 106 $idnum = $idnum{$set{'id'}};
101 107
102 if($idnum eq "") { 108 if($idnum eq "") {