summaryrefslogtreecommitdiff
path: root/utils/extract-i18n-js.pl
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-26 12:58:33 +0300
committerAndrew Dolgov <[email protected]>2021-02-26 12:58:33 +0300
commit15cad4a9c07736394768a983dff500da20d8b1c9 (patch)
treead52c7b449dfda9686bcb408d01dad537825f9c1 /utils/extract-i18n-js.pl
parent634f1210a6f6f4c30fedec04098f47c7fd385fb0 (diff)
rebase translations, fixing a few JS strings not mached; remove obsolete scripts
Diffstat (limited to 'utils/extract-i18n-js.pl')
-rwxr-xr-xutils/extract-i18n-js.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/utils/extract-i18n-js.pl b/utils/extract-i18n-js.pl
deleted file mode 100755
index b51e7ce5a..000000000
--- a/utils/extract-i18n-js.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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";
- }
-}