summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-09-18 10:43:06 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-09-18 10:43:34 -0400
commita056150d52bb93a1818dfda5470ccf45a43e5844 (patch)
treeaf20aca464590ef4dcd9137da9fac4c7a8ae6968 /tools
parente0df9952fd13904da646adae0409b5c76c67f298 (diff)
downloadrockbox-a056150d52bb93a1818dfda5470ccf45a43e5844.tar.gz
rockbox-a056150d52bb93a1818dfda5470ccf45a43e5844.zip
updatelang: Flag '|' in voice strings tooHEADmaster
Change-Id: Id82bf7bd19741e7275d188ceeea872ebeb30e1eb
Diffstat (limited to 'tools')
-rwxr-xr-xtools/updatelang4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/updatelang b/tools/updatelang
index 1fb594d596..ff4ce340e0 100755
--- a/tools/updatelang
+++ b/tools/updatelang
@@ -476,9 +476,9 @@ foreach my $id (@langorder) {
476 } 476 }
477 my $sane = $lang{$id}{'voice'}{$tgt}; 477 my $sane = $lang{$id}{'voice'}{$tgt};
478 $sane =~ s/^~?(.*)/$1/; # Strip off leading ~ if it's there as it's not a legal character otherwise 478 $sane =~ s/^~?(.*)/$1/; # Strip off leading ~ if it's there as it's not a legal character otherwise
479 if ($sane =~ tr/%"~:\[\]<>{}//) { 479 if ($sane =~ tr/%"~:\[\]<>{}\|//) {
480 # Suspicious characters that are not typically voiced.. 480 # Suspicious characters that are not typically voiced..
481 $lang{$id}{'notes'} .= "### The <voice> section for '$id:$tgt' has some suspicious characters (eg %,\",~,:,<,>,[,],{,}), please correct!\n"; 481 $lang{$id}{'notes'} .= "### The <voice> section for '$id:$tgt' has some suspicious characters (eg %,\",~,:,<,>,[,],{,},|), please correct!\n";
482# print "#!! '$id:$tgt' suspicious characters\n"; 482# print "#!! '$id:$tgt' suspicious characters\n";
483 } 483 }
484 if ($lang{$id}{'voice'}{$tgt} =~ /\.\.\./) { 484 if ($lang{$id}{'voice'}{$tgt} =~ /\.\.\./) {