From b697c0472f8fca59c2c7f3ac3bf3a8512d480f1a Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Sat, 27 May 2017 18:41:43 +0100 Subject: [PATCH] fix fullstop --- scripts/check-i18n.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-i18n.pl b/scripts/check-i18n.pl index 3cb2cec18c..6c92dae53d 100755 --- a/scripts/check-i18n.pl +++ b/scripts/check-i18n.pl @@ -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);