From 333d36c29926610a40d35e6465d99eb0d8106105 Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Thu, 18 Jun 2020 16:24:08 +0100 Subject: Fix up errors from check_trans.pl - Closes #963071 Rename a few of the $lang/international/$lang directories to be consistent. Some of them had leading capitals on the deeper $lang directory for no apparent reason, and this was causing the check_trans.pl script to fail to find files here. Also tweak how the check_trans.pl script load the tranlsator.db.pl files - add a leading "./". Both of these apparently used to work as-is, not sure what's changed to cause the breakage to only show up now!! :-/ --- check_trans.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'check_trans.pl') diff --git a/check_trans.pl b/check_trans.pl index 6ba9df1604c..ac14395be0b 100755 --- a/check_trans.pl +++ b/check_trans.pl @@ -1021,7 +1021,7 @@ sub read_translators if ( -e $db_file) { - require $db_file; + require "./$db_file"; verbose "READ TRANSLATOR DB: $db_file\n"; -- cgit v1.2.3