From 4527efb078a314ec462b28555fc6e69816308495 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Sun, 27 Dec 2009 08:16:59 +1300 Subject: [PATCH] Fixing some whitespace issues in misc/translator/update.pl --- misc/translator/update.pl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/misc/translator/update.pl b/misc/translator/update.pl index ad9b9ccd09..0aec9c03c3 100755 --- a/misc/translator/update.pl +++ b/misc/translator/update.pl @@ -9,15 +9,15 @@ my $dir = "po"; my $po; opendir (DIR,$dir); -while (defined($po = readdir(DIR))) { - next if $po =~ /^\.\.?$/; - print "processing $po...\n"; - my $interface = 'intranet'; - if ($po =~ /opac/) { - $interface = 'opac'; - } - system("./tmpl_process3.pl update -i ../../koha-tmpl/$interface-tmpl/prog/en/ -s po/$po -r"); - print "Finished\n"; +while (defined($po = readdir(DIR))) { + next if $po =~ /^\.\.?$/; + print "processing $po...\n"; + my $interface = 'intranet'; + if ($po =~ /opac/) { + $interface = 'opac'; + } + system("./tmpl_process3.pl update -i ../../koha-tmpl/$interface-tmpl/prog/en/ -s po/$po -r"); + print "Finished\n"; } closedir DIR; -- 2.39.5