Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
394 B

#!/usr/bin/perl -w
use strict;
use warnings;
use File::Basename;
use Locale::Maketext::Extract::Run 'xgettext';
chdir dirname($0) . '/..';
my @files = qw(vroom public/js/vroom.js);
push @files, glob('templates/default/*');
foreach my $lang (map { basename(s/\.po$//r) } glob('lib/Vroom/I18N/*.po')){
xgettext(
'-o', 'lib/Vroom/I18N/' . $lang . '.po',
'--wrap',
@files
);
}