mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
fix fullstop
This commit is contained in:
parent
bc433bc2a2
commit
b697c0472f
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ printf ("$count/" . (scalar keys %$src) . " strings found in src are present in
|
|||
opendir(DIR, $i18ndir) || die $!;
|
||||
my @files = readdir(DIR);
|
||||
closedir(DIR);
|
||||
foreach my $lang (grep { -f "$i18ndir/$_" && !/en_EN\.json/ } @files) {
|
||||
foreach my $lang (grep { -f "$i18ndir/$_" && !/(basefile|en_EN)\.json/ } @files) {
|
||||
print "\nChecking $lang\n";
|
||||
|
||||
my $map = read_i18n($i18ndir."/".$lang);
|
||||
|
|
Loading…
Reference in a new issue