diff options
Diffstat (limited to 'docs/getstrings.pl')
-rw-r--r-- | docs/getstrings.pl | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/getstrings.pl b/docs/getstrings.pl deleted file mode 100644 index 0325438b551..00000000000 --- a/docs/getstrings.pl +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -use strict; - -if( -e 'messages.pot' ){ - `xgettext --files-from=xgettextfiles --join-existing --output=messages.pot --keyword=t` -} -else{ - `xgettext --files-from=xgettextfiles --output=messages.pot --keyword=t` -} - -opendir( DIR, '.' ); -my @files = readdir( DIR ); -closedir( DIR ); - -foreach my $i ( @files ){ - next unless $i =~ m/^(.*)\.po$/; - `xgettext --files-from=xgettextfiles --join-existing --output=$i --keyword=t` -} |