~ubuntu-branches/ubuntu/raring/webcalendar/raring

« back to all changes in this revision

Viewing changes to tools/update_all.pl

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2009-06-09 06:26:24 UTC
  • mfrom: (18.2.3 karmic)
  • Revision ID: james.westby@ubuntu.com-20090609062624-9n9xea2ftpipmg38
Tags: 1.2.0+dfsg-4
* debian/patches/06_send-reminder-paths.diff: Adjust patch to help
  translate.php to find the translation files under /etc/webcalendar.
  Thanks to Dale and Cheryl Schroeder for the help on debugging this
  (really, closes: #531312).
* debian/patches/16_no-blink-public-access-title.diff: New patch for
  avoiding the blinking title when changing the Public Access title in
  English-US.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
@files = grep ( /.txt$/, @files );
15
15
 
16
16
foreach $f ( @files ) {
17
 
  print "update_translation.pl $f\n";
18
 
  print `perl update_translation.pl $f`;
 
17
  printf "%-25s", $f;
 
18
  print `perl update_translation.pl -b -m $f`;
19
19
}
20
 
print "Done.\n";
 
20
print "\nDone.\n";
21
21
exit 0;
22