[svk-commit] r2623 - trunk/lib/SVK
nobody at bestpractical.com
nobody at bestpractical.com
Sun Dec 9 07:44:43 EST 2007
Author: audreyt
Date: Sun Dec 9 07:44:43 2007
New Revision: 2623
Modified:
trunk/lib/SVK/XD.pm
Log:
* I18N fixes to avoid interpolation
Modified: trunk/lib/SVK/XD.pm
==============================================================================
--- trunk/lib/SVK/XD.pm (original)
+++ trunk/lib/SVK/XD.pm Sun Dec 9 07:44:43 2007
@@ -1181,12 +1181,12 @@
my $st = [lstat ($copath)];
return '' if !-e _;
unless (-r _) {
- $logger->warn( loc ("Warning: $copath is unreadable."));
+ $logger->warn( loc ("Warning: %1 is unreadable.", $copath));
return;
}
return ('file', $st) if -f _ or is_symlink;
return ('directory', $st) if -d _;
- $logger->warn( loc ("Warning: unsupported node type $copath."));
+ $logger->warn( loc ("Warning: unsupported node type %1.", $copath));
return ('', $st);
}
More information about the svk-commit
mailing list