You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/perl -w
|
|
#
|
|
use strict;
|
|
|
|
while (<STDIN>) {
|
|
chomp;
|
|
|
|
if (/(__|Notify.progress|Notify.msg|Notify.info|Notify.error)\(['"](.*?)['"]\)/) {
|
|
my $msg = $2;
|
|
|
|
$msg =~ s/\"/\\\"/g;
|
|
|
|
print "print T_js_decl(\"$msg\");\n";
|
|
}
|
|
}
|