po: Detect if nowrapi18n can't be passed to po4a, and warn about the old version, but continue. Closes: #541205

master
Joey Hess 2009-08-12 12:26:07 -04:00
parent 55e062f2d1
commit b4d7dfcbe1
2 changed files with 13 additions and 1 deletions

View File

@ -10,7 +10,12 @@ use warnings;
use strict;
use IkiWiki 3.00;
use Encode;
use Locale::Po4a::Common qw(nowrapi18n !/.*/);
eval q{use Locale::Po4a::Common qw(nowrapi18n !/.*/)};
if ($@) {
print STDERR gettext("warning: Old po4a detected! Recommend upgrade to 0.35.")."\n";
eval q{use Locale::Po4a::Common qw(!/.*/)};
die $@ if $@;
}
use Locale::Po4a::Chooser;
use Locale::Po4a::Po;
use File::Basename;

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ikiwiki (3.141593) UNRELEASED; urgency=low
* po: Detect if nowrapi18n can't be passed to po4a, and warn about
the old version, but continue. Closes: #541205
-- Joey Hess <joeyh@debian.org> Wed, 12 Aug 2009 12:25:30 -0400
ikiwiki (3.141592) unstable; urgency=low
* Add new hooks: canremove, canrename, rename. (intrigeri)