aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-03-01 16:13:54 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-03-01 16:13:54 +0000
commit260428cfeba137c058d6aaeb6fec517f226f6b9e (patch)
treeb5c7ed42dc46c1a27265bd0e57f2a29fb8f7ec59
parenta07464603d934971b3efe1e725322d219e14836b (diff)
downloadrpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar
rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar.gz
rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar.bz2
rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.tar.xz
rpmdrake-260428cfeba137c058d6aaeb6fec517f226f6b9e.zip
Add a TODO note in rpmdrake
-rwxr-xr-xrpmdrake9
1 files changed, 6 insertions, 3 deletions
diff --git a/rpmdrake b/rpmdrake
index 9f1a290f..b48fe671 100755
--- a/rpmdrake
+++ b/rpmdrake
@@ -24,6 +24,7 @@ use MDK::Common 'any';
BEGIN { #- we want to run this code before the Gtk->init of the use-my_gtk
my $basename = sub { local $_ = shift; s|/*\s*$||; s|.*/||; $_ };
+ #- TODO translate this
any { /^--?h/ } @ARGV and do {
printf qq(Usage: %s [OPTION]...
--changelog-first display changelog before filelist in the description window
@@ -1522,9 +1523,11 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
},
));
if (@invalid_sources) {
- interactive_msg_(N("Rpmdrake"),
- N("The following packages have bad signatures:\n\n%s\n\nDo you want to continue installation?",
- join "\n", sort @invalid_sources), yesno => 1, if_(@invalid_sources > 10, scroll => 1)) or goto return_with_error;
+ interactive_msg_(
+ N("Rpmdrake"),
+ N("The following packages have bad signatures:\n\n%s\n\nDo you want to continue installation?",
+ join "\n", sort @invalid_sources), yesno => 1, if_(@invalid_sources > 10, scroll => 1),
+ ) or goto return_with_error;
}
}